diff options
author | Andrey Hristov <andrey@php.net> | 2009-11-26 11:10:47 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2009-11-26 11:10:47 +0000 |
commit | 1cf1cb30152174cdf95b1e87bee357557ca3c263 (patch) | |
tree | 965279ccf81f46fa383a1a512216778261c63dd5 /ext/mysqlnd/mysqlnd.c | |
parent | 99c43e1b934f318c9bc5d0f85b2f2edd690ae888 (diff) | |
download | php-git-1cf1cb30152174cdf95b1e87bee357557ca3c263.tar.gz |
fix debug windows build as well as remove a compilation warning
(a header not included)
Diffstat (limited to 'ext/mysqlnd/mysqlnd.c')
-rw-r--r-- | ext/mysqlnd/mysqlnd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqlnd/mysqlnd.c b/ext/mysqlnd/mysqlnd.c index d0de073837..365068d60c 100644 --- a/ext/mysqlnd/mysqlnd.c +++ b/ext/mysqlnd/mysqlnd.c @@ -157,7 +157,7 @@ MYSQLND_METHOD(mysqlnd_conn, free_contents)(MYSQLND *conn TSRMLS_DC) } #ifdef MYSQLND_COMPRESSION_ENABLED if (conn->net.uncompressed_data) { - conn->net.uncompressed_data->free(&conn->net.uncompressed_data TSRMLS_CC); + conn->net.uncompressed_data->free_buffer(&conn->net.uncompressed_data TSRMLS_CC); } #endif |