From e62a2145bb31e75b2a6d074de2596b2e35b6e25c Mon Sep 17 00:00:00 2001 From: Moriyoshi Koizumi Date: Fri, 14 Feb 2003 19:07:38 +0000 Subject: [PATCH] Fixed wrong commit: s/&/*/ --- ext/standard/string.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/standard/string.c b/ext/standard/string.c index 75d773a32a..b202f26008 100644 --- a/ext/standard/string.c +++ b/ext/standard/string.c @@ -837,7 +837,7 @@ PHPAPI void php_implode(zval *delim, zval *arr, zval *return_value) (void **) &tmp, &pos) == SUCCESS) { SEPARATE_ZVAL(tmp); - convert_to_string(&tmp); + convert_to_string(*tmp); smart_str_appendl(&implstr, Z_STRVAL_PP(tmp), Z_STRLEN_PP(tmp)); if (++i != numelems) { -- 2.40.0