diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2003-02-14 16:45:31 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2003-02-14 16:45:31 +0000 |
commit | 4f1b6364f9a0d7b69ef8b0deb50d3de7de73a068 (patch) | |
tree | a03b4bbc89301ee9a405d45bc3eb7b8755e0dfbf | |
parent | 14bc73defe061c98431fb0f67ce06fcb4389f592 (diff) | |
download | php-git-4f1b6364f9a0d7b69ef8b0deb50d3de7de73a068.tar.gz |
Buncha Fixes.
* Fixed a number of memory leaks.
* Fixed some php_error_docref() calls that tried to print non-existent
arguments.
* Fixed some signed/unsigned problems.
* Fixed the MYSQLI_FETCH_RESOURCE macro so that compilers do not complain
about un-initialized variables.
* CS fixes.
-rw-r--r-- | ext/mysqli/php_mysqli.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqli/php_mysqli.h b/ext/mysqli/php_mysqli.h index 01301f573d..0866011768 100644 --- a/ext/mysqli/php_mysqli.h +++ b/ext/mysqli/php_mysqli.h @@ -103,7 +103,7 @@ PHP_MYSQLI_EXPORT(zend_object_value) mysqli_objects_new(zend_class_entry * TSRML { \ mysqli_object *intern = (mysqli_object *)zend_object_store_get_object(*(__id) TSRMLS_CC);\ if (!((__ptr) != (__type)intern->ptr)) {\ - php_error(E_WARNING, "Couldn' fetch %s", intern->zo.ce->name);\ + php_error(E_WARNING, "Couldn't fetch %s", intern->zo.ce->name);\ RETURN_NULL();\ }\ __ptr = (__type)intern->ptr; \ |