helly Tue Mar 9 09:29:22 2004 EDT Modified files: /php-src/ext/mysqli mysqli.c Log: Missing buffer->val change http://cvs.php.net/diff.php/php-src/ext/mysqli/mysqli.c?r1=1.33&r2=1.34&ty=u Index: php-src/ext/mysqli/mysqli.c diff -u php-src/ext/mysqli/mysqli.c:1.33 php-src/ext/mysqli/mysqli.c:1.34 --- php-src/ext/mysqli/mysqli.c:1.33 Thu Feb 26 06:40:35 2004 +++ php-src/ext/mysqli/mysqli.c Tue Mar 9 09:29:20 2004 @@ -15,7 +15,7 @@ | Author: Georg Richter <[EMAIL PROTECTED]> | +----------------------------------------------------------------------+ - $Id: mysqli.c,v 1.33 2004/02/26 11:40:35 georg Exp $ + $Id: mysqli.c,v 1.34 2004/03/09 14:29:20 helly Exp $ */ #ifdef HAVE_CONFIG_H @@ -66,7 +66,7 @@ for (i=0; i < bbuf.var_cnt; i++) { if (type == FETCH_RESULT) { if (bbuf.buf[i].type == IS_STRING) { - efree(bbuf.buf[i].buffer); + efree(bbuf.buf[i].val); } } if (bbuf.vars[i]) {
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php