jmoore Mon Feb 26 05:04:01 2001 EDT
Modified files:
/php4/ext/standard string.c
Log:
Fix for bug #9449 to stop infinate loop in wordwrap.
Index: php4/ext/standard/string.c
diff -u php4/ext/standard/string.c:1.191 php4/ext/standard/string.c:1.192
--- php4/ext/standard/string.c:1.191 Sun Feb 25 22:07:23 2001
+++ php4/ext/standard/string.c Mon Feb 26 05:04:00 2001
@@ -18,7 +18,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: string.c,v 1.191 2001/02/26 06:07:23 andi Exp $ */
+/* $Id: string.c,v 1.192 2001/02/26 13:04:00 jmoore Exp $ */
/* Synced with php 3.0 revision 1.193 1999-06-16 [ssb] */
@@ -463,6 +463,7 @@
break;
}
}
+ l ++;
}
}
i += l+1;
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]