diff options
author | Ulf Wendel <uw@php.net> | 2009-09-11 12:16:56 +0000 |
---|---|---|
committer | Ulf Wendel <uw@php.net> | 2009-09-11 12:16:56 +0000 |
commit | c4c11fd38a69781cbecab07dcc817ce85bf8e0ed (patch) | |
tree | 575a88a5c47132e6e4d6b334a3640b2821244c51 /ext/mysqli/mysqli_api.c | |
parent | b39126de9ae93a7017908f32ddfe36579e2f199a (diff) | |
download | php-git-c4c11fd38a69781cbecab07dcc817ce85bf8e0ed.tar.gz |
Fixing a crash which must have existed since PHP 5.0. At least the crash can be reproduced with PHP 5.0.6. The crash happens only when using the MySQL Client Library (libmysql) - it does not happen
when using mysqlnd.
Diffstat (limited to 'ext/mysqli/mysqli_api.c')
-rw-r--r-- | ext/mysqli/mysqli_api.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/mysqli/mysqli_api.c b/ext/mysqli/mysqli_api.c index 38bf9ae946..bb398af38c 100644 --- a/ext/mysqli/mysqli_api.c +++ b/ext/mysqli/mysqli_api.c @@ -409,7 +409,7 @@ mysqli_stmt_bind_result_do_bind(MY_STMT *stmt, zval ***args, unsigned int argc, bind[ofs].buffer = stmt->result.buf[ofs].val; bind[ofs].is_null = &stmt->result.is_null[ofs]; bind[ofs].buffer_length = stmt->result.buf[ofs].buflen; - bind[ofs].length = &stmt->result.buf[ofs].buflen; + bind[ofs].length = &stmt->result.buf[ofs].output_len; break; } default: @@ -916,7 +916,7 @@ void mysqli_stmt_fetch_libmysql(INTERNAL_FUNCTION_PARAMETERS) { #endif ZVAL_STRINGL(stmt->result.vars[i], stmt->result.buf[i].val, - stmt->result.buf[i].buflen, 1); + stmt->result.buf[i].output_len, 1); } } break; |