diff options
author | Alex Dupre <ale@FreeBSD.org> | 2007-02-15 06:52:30 +0000 |
---|---|---|
committer | Alex Dupre <ale@FreeBSD.org> | 2007-02-15 06:52:30 +0000 |
commit | 9312854b8ca6e595b8c51248fd612a496a724aa7 (patch) | |
tree | 5b5396b804d64a2b7dd794cf5690de52ffd8d6b6 /lang/php53/files | |
parent | 6773b2c49d9886ffb8fdb75346cf1fd4cfb61356 (diff) |
Notes
Diffstat (limited to 'lang/php53/files')
-rw-r--r-- | lang/php53/files/patch-ext_standard_string.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lang/php53/files/patch-ext_standard_string.c b/lang/php53/files/patch-ext_standard_string.c new file mode 100644 index 000000000000..1bf5dc8377eb --- /dev/null +++ b/lang/php53/files/patch-ext_standard_string.c @@ -0,0 +1,11 @@ +--- ext/standard/string.c.orig Thu Feb 15 07:50:09 2007 ++++ ext/standard/string.c Thu Feb 15 07:50:33 2007 +@@ -3148,7 +3148,7 @@ + } + + Z_STRLEN_P(result) = len + (char_count * (to_len - 1)); +- Z_STRVAL_P(result) = target = safe_emalloc(char_count, to_len, len); ++ Z_STRVAL_P(result) = target = safe_emalloc(char_count, to_len, len + 1); + Z_TYPE_P(result) = IS_STRING; + + if (case_sensitivity) { |