[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Lynx-dev] Re: Accepted lynx-cur 2.8.8dev.4-1 (source all i386)
From: |
Thomas Dickey |
Subject: |
[Lynx-dev] Re: Accepted lynx-cur 2.8.8dev.4-1 (source all i386) |
Date: |
Mon, 28 Jun 2010 20:32:58 -0400 (EDT) |
On Sat, 26 Jun 2010, Atsuhito KOHDA wrote:
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.8
Date: Sat, 26 Jun 2010 12:19:47 +0900
Source: lynx-cur
Binary: lynx-cur lynx-cur-wrapper lynx
Architecture: source all i386
Version: 2.8.8dev.4-1
I found an error in dev.4, which should be patched "soon".
Here's a fix:
diff -u -r1.188 GridText.c
--- GridText.c 2010/06/17 10:50:36 1.188
+++ GridText.c 2010/06/29 00:30:37
@@ -10632,7 +10632,7 @@
assert(want != NULL);
assert(text != NULL);
- for (j = 0; j <= (last - have); ++j) {
+ for (j = 0; (long) j <= (long) (last - have); ++j) {
if (want[0] == text[j]
&& !memcmp(want, text + j, have)) {
char temp[2];
--
Thomas E. Dickey
http://invisible-island.net
ftp://invisible-island.net
- [Lynx-dev] Re: Accepted lynx-cur 2.8.8dev.4-1 (source all i386),
Thomas Dickey <=