From: Adam Gołębiowski Date: Sat, 19 Aug 2006 09:54:30 +0000 (+0000) Subject: - applied in 5.1.5 X-Git-Tag: auto/th/php-5_1_5-1~1 X-Git-Url: https://git.pld-linux.org/?a=commitdiff_plain;h=a3dfb90321c2e5b6e48209391f35bcd344291ece;p=packages%2Fphp.git - applied in 5.1.5 Changed files: php-substr_compare.patch -> 1.2 --- diff --git a/php-substr_compare.patch b/php-substr_compare.patch deleted file mode 100644 index bf61ebe..0000000 --- a/php-substr_compare.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- php-src.org/ext/standard/string.c 2006/04/25 12:48:41 1.445.2.14 -+++ php-src/ext/standard/string.c 2006/05/10 13:07:15 1.445.2.14.2.1 -@@ -4894,7 +4894,7 @@ - offset = (offset < 0) ? 0 : offset; - } - -- if ((offset + len) >= s1_len) { -+ if ((offset + len) > s1_len) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "The start position cannot exceed initial string length"); - RETURN_FALSE; - }