dsp             Tue Jun 23 14:14:32 2009 UTC

  Modified files:              
    /php-src/ext/mysqlnd        mysqlnd_result.c 
  Log:
  Fix bug #48644 mysqlnd does not compile with '--enable-mysqlnd-threading'
  
  
http://cvs.php.net/viewvc.cgi/php-src/ext/mysqlnd/mysqlnd_result.c?r1=1.35&r2=1.36&diff_format=u
Index: php-src/ext/mysqlnd/mysqlnd_result.c
diff -u php-src/ext/mysqlnd/mysqlnd_result.c:1.35 
php-src/ext/mysqlnd/mysqlnd_result.c:1.36
--- php-src/ext/mysqlnd/mysqlnd_result.c:1.35   Tue Jun 16 13:06:45 2009
+++ php-src/ext/mysqlnd/mysqlnd_result.c        Tue Jun 23 14:14:32 2009
@@ -18,7 +18,7 @@
   +----------------------------------------------------------------------+
 */
 
-/* $Id: mysqlnd_result.c,v 1.35 2009/06/16 13:06:45 andrey Exp $ */
+/* $Id: mysqlnd_result.c,v 1.36 2009/06/23 14:14:32 dsp Exp $ */
 #include "php.h"
 #include "mysqlnd.h"
 #include "mysqlnd_wireprotocol.h"
@@ -354,7 +354,7 @@
 #endif
                        pefree(current_row, set->persistent);
                }
-               current_buffer->free_chunk(current_buffer, TRUE TSRMLS_CC);
+               mysqlnd_mempool_free_chunk(current_buffer, TRUE TSRMLS_CC);
        }
        DBG_INF("Freeing data & row_buffer");
        pefree(set->data, set->persistent);



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

Reply via email to