aboutsummaryrefslogtreecommitdiffstats
path: root/debian/patches/440_parsetagx-crash.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/440_parsetagx-crash.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 'debian/patches/440_parsetagx-crash.patch')
-rw-r--r--debian/patches/440_parsetagx-crash.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/debian/patches/440_parsetagx-crash.patch b/debian/patches/440_parsetagx-crash.patch
deleted file mode 100644
index 08c570e..0000000
--- a/debian/patches/440_parsetagx-crash.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-Subject: Fix crash in parse_tag() during every start
-Author: Olaf Hering <olh@suse.de>
-Origin: https://build.opensuse.org/package/view_file/openSUSE:Factory/w3m/w3m-parsetagx-crash.patch?expand=1
-
-diff --git a/parsetagx.c b/parsetagx.c
-index 6b627d2..3435f9f 100644
---- a/parsetagx.c
-+++ b/parsetagx.c
-@@ -221,6 +221,7 @@ parse_tag(char **s, int internal)
- int j, hidden=FALSE;
- for (j=0; j<i; j++) {
- if (tag->attrid[j] == ATTR_TYPE &&
-+ tag->value[j] &&
- strcmp("hidden",tag->value[j]) == 0) {
- hidden=TRUE;
- break;