summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'media-video/vdr/files/vdr-1.2.6_CAN-2005-0071.patch')
-rw-r--r--media-video/vdr/files/vdr-1.2.6_CAN-2005-0071.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/media-video/vdr/files/vdr-1.2.6_CAN-2005-0071.patch b/media-video/vdr/files/vdr-1.2.6_CAN-2005-0071.patch
deleted file mode 100644
index d9d573383e63..000000000000
--- a/media-video/vdr/files/vdr-1.2.6_CAN-2005-0071.patch
+++ /dev/null
@@ -1,25 +0,0 @@
---- vdr-1.2.6/dvbdevice.c.orig 2005-01-24 14:33:57.478927267 +0100
-+++ vdr-1.2.6/dvbdevice.c 2005-01-24 14:37:04.732811047 +0100
-@@ -505,8 +505,10 @@
- Quality = 255; //XXX is this 'best'???
-
- isyslog("grabbing to %s (%s %d %d %d)", FileName, Jpeg ? "JPEG" : "PNM", Quality, vm.width, vm.height);
-- FILE *f = fopen(FileName, "wb");
-- if (f) {
-+ int fd = open(FileName, O_CREAT | O_EXCL | O_TRUNC | O_RDWR, 0600);
-+ if (fd > -1) {
-+ FILE *f = fdopen(fd, "wb");
-+ if (f) {
- if (Jpeg) {
- // write JPEG file:
- struct jpeg_compress_struct cinfo;
-@@ -540,7 +542,8 @@
- }
- }
- fclose(f);
-- }
-+ }
-+ }
- else {
- LOG_ERROR_STR(FileName);
- result |= 1;