aboutsummaryrefslogtreecommitdiffstats
path: root/debian/patches/130_rc-blank-line-fix.patch
diff options
context:
space:
mode:
authorTatsuya Kinoshita <tats@vega.ocn.ne.jp>2011-05-04 07:38:07 +0000
committerTatsuya Kinoshita <tats@vega.ocn.ne.jp>2011-05-04 07:38:07 +0000
commitfa32682a5bfdd176e582cf6128a3c40c1c0cd189 (patch)
treee53c179239dcfb65582c3bb844896b678c9f61cd /debian/patches/130_rc-blank-line-fix.patch
parentReleasing debian version 0.5.2-6 (diff)
downloadw3m-fa32682a5bfdd176e582cf6128a3c40c1c0cd189.tar.gz
w3m-fa32682a5bfdd176e582cf6128a3c40c1c0cd189.zip
Releasing debian version 0.5.2-7debian/0.5.2-7
Diffstat (limited to 'debian/patches/130_rc-blank-line-fix.patch')
-rw-r--r--debian/patches/130_rc-blank-line-fix.patch23
1 files changed, 23 insertions, 0 deletions
diff --git a/debian/patches/130_rc-blank-line-fix.patch b/debian/patches/130_rc-blank-line-fix.patch
new file mode 100644
index 0000000..b4c36c5
--- /dev/null
+++ b/debian/patches/130_rc-blank-line-fix.patch
@@ -0,0 +1,23 @@
+Description: Fix .w3m/config parser confused by blank lines
+Origin: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=537706#10
+Author: "Trent W. Buck" <twb@cybersource.com.au>
+Bug-Debian: http://bugs.debian.org/537706
+
+Index: w3m-0.5.2/rc.c
+===================================================================
+--- w3m-0.5.2.orig/rc.c 2009-07-20 20:48:47.426565387 +1000
++++ w3m-0.5.2/rc.c 2009-07-20 20:49:24.086565581 +1000
+@@ -1061,9 +1061,11 @@
+
+ for (;;) {
+ line = Strfgets(f);
+- Strchop(line);
+- if (line->length == 0)
++ if (line->length == 0) /* end of file */
+ break;
++ Strchop(line);
++ if (line->length == 0) /* blank line */
++ continue;
+ Strremovefirstspaces(line);
+ if (line->ptr[0] == '#') /* comment */
+ continue;