From: Marcus Boerger Date: Tue, 9 Mar 2004 14:29:20 +0000 (+0000) Subject: Missing buffer->val change X-Git-Tag: php-5.0.0RC1RC1~89 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=59804de32e7a4a983f6ad5446b35b4d3de544398;p=php Missing buffer->val change --- diff --git a/ext/mysqli/mysqli.c b/ext/mysqli/mysqli.c index 68bbf8e228..b2d71457a2 100644 --- a/ext/mysqli/mysqli.c +++ b/ext/mysqli/mysqli.c @@ -66,7 +66,7 @@ void php_free_stmt_bind_buffer(BIND_BUFFER bbuf, int type) 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]) {