Fixes string indexing error when parsing html/urls.

Author has been notified.
This commit is contained in:
martin 1998-08-04 00:38:52 +00:00
parent db28bcf46a
commit 0c2868bcfb

11
net/wget/patches/patch-ab Normal file
View File

@ -0,0 +1,11 @@
--- src/url.c.orig Tue Jun 16 04:55:27 1998
+++ src/url.c Mon Aug 3 23:03:49 1998
@@ -870,7 +870,7 @@
HTML tools burn in hell for the damage they've inflicted! */
while ((pbuf < buf + step) && ISSPACE (*pbuf))
++pbuf;
- while (size && ISSPACE (pbuf[size]))
+ while (size && ISSPACE (pbuf[size-1]))
--size;
for (i = 0; protostrings[i]; i++)