diff options
Diffstat (limited to 'debian/patches')
-rw-r--r-- | debian/patches/290_closedir.patch | 19 | ||||
-rw-r--r-- | debian/patches/series | 1 |
2 files changed, 20 insertions, 0 deletions
diff --git a/debian/patches/290_closedir.patch b/debian/patches/290_closedir.patch new file mode 100644 index 0000000..04fafdf --- /dev/null +++ b/debian/patches/290_closedir.patch @@ -0,0 +1,19 @@ +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); diff --git a/debian/patches/series b/debian/patches/series index 6e9feb0..6b26489 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -27,4 +27,5 @@ 260_openssl.patch 270_refresh-url.patch 280_search-next.patch +290_closedir.patch 900_ChangeLog.patch |