0fd3c73e8c
- Forward-ported open() permission patch
12 lines
471 B
Diff
12 lines
471 B
Diff
--- brasero-0.7.0/src/plugins/transcode/burn-transcode.c.orig 2007-12-30 11:17:45.000000000 +0100
|
|
+++ brasero-0.7.0/src/plugins/transcode/burn-transcode.c 2007-12-30 11:18:02.000000000 +0100
|
|
@@ -931,7 +931,7 @@
|
|
|
|
output = NULL;
|
|
brasero_job_get_audio_output (BRASERO_JOB (transcode), &output);
|
|
- fd = open (output, O_WRONLY | O_CREAT | O_APPEND);
|
|
+ fd = open (output, O_WRONLY | O_CREAT | O_APPEND, S_IRWXU | S_IRGRP | S_IROTH);
|
|
g_free (output);
|
|
|
|
if (fd == -1) {
|