diff options
author | Andrey Hristov <andrey@php.net> | 2010-05-03 16:09:05 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2010-05-03 16:09:05 +0000 |
commit | ec0fe858c6b04741e20425b8045e3e558ab51303 (patch) | |
tree | 26a16890f0b752f888ee1d493f0a9f9d8ce7ee3f /ext/mysqlnd/mysqlnd_wireprotocol.c | |
parent | 676a8338a1c78a457e33b50be81f6f514eda8871 (diff) | |
download | php-git-ec0fe858c6b04741e20425b8045e3e558ab51303.tar.gz |
Remove unused parameter
Diffstat (limited to 'ext/mysqlnd/mysqlnd_wireprotocol.c')
-rw-r--r-- | ext/mysqlnd/mysqlnd_wireprotocol.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/mysqlnd/mysqlnd_wireprotocol.c b/ext/mysqlnd/mysqlnd_wireprotocol.c index 6e0adf5620..9896788dd1 100644 --- a/ext/mysqlnd/mysqlnd_wireprotocol.c +++ b/ext/mysqlnd/mysqlnd_wireprotocol.c @@ -1169,7 +1169,7 @@ php_mysqlnd_read_row_ex(MYSQLND * conn, MYSQLND_MEMORY_POOL * result_set_memory_ } } if (ret == FAIL && *buffer) { - (*buffer)->free_chunk((*buffer), TRUE TSRMLS_CC); + (*buffer)->free_chunk((*buffer) TSRMLS_CC); *buffer = NULL; } *data_size -= prealloc_more_bytes; @@ -1594,7 +1594,7 @@ php_mysqlnd_rowp_free_mem(void *_packet, zend_bool alloca TSRMLS_DC) DBG_ENTER("php_mysqlnd_rowp_free_mem"); p = (MYSQLND_PACKET_ROW *) _packet; if (p->row_buffer) { - p->row_buffer->free_chunk(p->row_buffer, TRUE TSRMLS_CC); + p->row_buffer->free_chunk(p->row_buffer TSRMLS_CC); p->row_buffer = NULL; } DBG_INF_FMT("alloca=%d persistent=%d", (int)alloca, (int)p->header.persistent); |