moriyoshi               Fri Feb 14 14:07:38 2003 EDT

  Modified files:              (Branch: PHP_4_3)
    /php4/ext/standard  string.c 
  Log:
  Fixed wrong commit: s/&/*/
  
  
Index: php4/ext/standard/string.c
diff -u php4/ext/standard/string.c:1.333.2.14 php4/ext/standard/string.c:1.333.2.15
--- php4/ext/standard/string.c:1.333.2.14       Fri Feb 14 14:00:43 2003
+++ php4/ext/standard/string.c  Fri Feb 14 14:07:38 2003
@@ -18,7 +18,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: string.c,v 1.333.2.14 2003/02/14 19:00:43 moriyoshi Exp $ */
+/* $Id: string.c,v 1.333.2.15 2003/02/14 19:07:38 moriyoshi Exp $ */
 
 /* Synced with php 3.0 revision 1.193 1999-06-16 [ssb] */
 
@@ -837,7 +837,7 @@
                                                                                 (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) {



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to