You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
532 B
13 lines
532 B
18 years ago
|
--- ImageMagick-6.3.5-9/magick/delegate.c 2007-09-11 13:20:41.000000000 +1000
|
||
|
+++ ImageMagick-6.3.5-9/magick/delegate.c 2007-09-18 18:27:31.000000000 +1000
|
||
|
@@ -769,7 +769,8 @@ static void CopyDelegateFile(const char
|
||
|
/*
|
||
|
Copy source file to destination.
|
||
|
*/
|
||
|
- destination_file=open(destination,O_WRONLY | O_BINARY | O_CREAT);
|
||
|
+ destination_file=open(destination,O_WRONLY | O_BINARY | O_CREAT,
|
||
|
+ S_IRUSR | S_IWUSR | S_IRGRP );
|
||
|
if (destination_file == -1)
|
||
|
return;
|
||
|
source_file=open(source,O_RDONLY | O_BINARY);
|