diff options
author | James Moore <jmoore@php.net> | 2001-02-26 13:04:00 +0000 |
---|---|---|
committer | James Moore <jmoore@php.net> | 2001-02-26 13:04:00 +0000 |
commit | 08d3e700fa0f8debcf8364ee4cca6c31771619c5 (patch) | |
tree | da7716472165932ec36199dc5c9339bc54df973c | |
parent | eb6ba01d1c739f1005554034fcdb991e810dfc21 (diff) | |
download | php-git-08d3e700fa0f8debcf8364ee4cca6c31771619c5.tar.gz |
Fix for bug #9449 to stop infinate loop in wordwrap.
-rw-r--r-- | ext/standard/string.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/standard/string.c b/ext/standard/string.c index 3cdfe319a0..a2ed4fd857 100644 --- a/ext/standard/string.c +++ b/ext/standard/string.c @@ -463,6 +463,7 @@ PHP_FUNCTION(wordwrap) break; } } + l ++; } } i += l+1; |