diff options
Diffstat (limited to 'extra/avfs/avfs-1.0.0-fix_open_missing_mode.patch')
-rw-r--r-- | extra/avfs/avfs-1.0.0-fix_open_missing_mode.patch | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/extra/avfs/avfs-1.0.0-fix_open_missing_mode.patch b/extra/avfs/avfs-1.0.0-fix_open_missing_mode.patch deleted file mode 100644 index 1e4a0a4d8..000000000 --- a/extra/avfs/avfs-1.0.0-fix_open_missing_mode.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/modules/urar.c 2007-05-14 20:21:23.000000000 +0200 -+++ b/modules/urar.c 2009-02-09 13:48:56.780225932 +0100 -@@ -587,7 +587,7 @@ - if(res < 0) - return res; - -- fd = open(tmpfile, O_RDWR | O_CREAT | O_TRUNC); -+ fd = open(tmpfile, O_RDWR | O_CREAT | O_TRUNC, 0644); - if(fd == -1) { - res = -errno; - av_log(AVLOG_ERROR, "RAR: Could not open %s: %s", tmpfile, |