aboutsummaryrefslogtreecommitdiffstats
path: root/debian/patches/290_closedir.patch
diff options
context:
space:
mode:
authorTatsuya Kinoshita <tats@debian.org>2015-01-24 14:36:40 +0000
committerTatsuya Kinoshita <tats@debian.org>2015-01-24 14:37:05 +0000
commit8595cb4102d547388d0d9e699d10a14f8f7aa71c (patch)
treecd27e4b710769000b651b9af4db2704a1cd328dd /debian/patches/290_closedir.patch
parentUpdate Vcs-Browser (diff)
downloadw3m-8595cb4102d547388d0d9e699d10a14f8f7aa71c.tar.gz
w3m-8595cb4102d547388d0d9e699d10a14f8f7aa71c.zip
Integrate Debian changes into 020_debian.patch (closes: #776112)
(debian/patches/*.patch except 010_upstream.patch are merged)
Diffstat (limited to '')
-rw-r--r--debian/patches/290_closedir.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/debian/patches/290_closedir.patch b/debian/patches/290_closedir.patch
deleted file mode 100644
index 04fafdf..0000000
--- a/debian/patches/290_closedir.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-Subject: Fix a directory descriptor leak in loadLocalDir
-Author: Reinhard Max <max@suse.de>
-Origin: https://build.opensuse.org/package/view_file/openSUSE:Factory/w3m/w3m-closedir.patch
-Bug-Novell: https://bugzilla.novell.com/show_bug.cgi?id=531675
-
- Mon Sep 7 16:49:56 CEST 2009 - max@suse.de
- - Added w3m-closedir.patch to fix a directory descriptor leak in
- loadLocalDir (bnc#531675).
-
---- w3m.orig/local.c
-+++ w3m/local.c
-@@ -109,6 +109,7 @@ loadLocalDir(char *dname)
- n++;
- }
- }
-+ closedir(d);
-
- if (multicolList) {
- l = COLS / (maxlen + 2);