sas             Sun Sep 28 06:24:42 2003 EDT

  Modified files:              (Branch: PHP_4_3)
    /php-src/ext/ircg   ircg.c 
  Log:
  Use correct allocator
  
  
Index: php-src/ext/ircg/ircg.c
diff -u php-src/ext/ircg/ircg.c:1.137.2.16 php-src/ext/ircg/ircg.c:1.137.2.17
--- php-src/ext/ircg/ircg.c:1.137.2.16  Wed Aug 13 14:53:42 2003
+++ php-src/ext/ircg/ircg.c     Sun Sep 28 06:24:41 2003
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: ircg.c,v 1.137.2.16 2003/08/13 18:53:42 sas Exp $ */
+/* $Id: ircg.c,v 1.137.2.17 2003/09/28 10:24:41 sas Exp $ */
 
 /* {{{ includes */
 
@@ -699,7 +699,7 @@
                                                t[i].para.v & P_CONV_BR);       \
                        }                                                              
                 \
                        ircg_js_escape(&tmp, result);                   \
-                       smart_str_free(&tmp);                                   \
+                       smart_str_free_ex(&tmp, 1);                             \
                        break;                                                         
         \
                case P_HTML:                                                           
 \
                        if (!what) break;                                              
 \

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

Reply via email to