Skip to content
Snippets Groups Projects
Commit eea5ba38 authored by Julian Rother's avatar Julian Rother
Browse files

publish_video/transcode: Fixed umask

parent 166d04c9
No related branches found
No related tags found
No related merge requests found
Checking pipeline status
......@@ -10,6 +10,7 @@ int main(int argc, char *argv[])
if (argc != 5)
return 1;
av_register_all();
umask(S_IWOTH);
init_env();
init_avlogbuf();
jobid = atoi(argv[1]);
......
......@@ -264,6 +264,7 @@ int main(int argc, char *argv[])
av_register_all();
avfilter_register_all();
init_env();
umask(S_IWOTH);
init_avlogbuf();
pkt.data = 0;
pkt.size = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment