diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2006-03-01 18:37:11 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2006-03-01 18:37:11 +0000 |
commit | 1aa1c535b51cf4d8acb4e4672942c50c91168478 (patch) | |
tree | 5216feff300a013b70914c761363033c6e3ecc6b /ext/mysqli/mysqli.c | |
parent | 3840e428bbe8bbfd8ee9253808430a00d38d3ca9 (diff) | |
download | php-git-1aa1c535b51cf4d8acb4e4672942c50c91168478.tar.gz |
Remove no longer needed check (checked at a higher level now).
Diffstat (limited to 'ext/mysqli/mysqli.c')
-rw-r--r-- | ext/mysqli/mysqli.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/ext/mysqli/mysqli.c b/ext/mysqli/mysqli.c index 47539b717c..0d1b34db9e 100644 --- a/ext/mysqli/mysqli.c +++ b/ext/mysqli/mysqli.c @@ -198,11 +198,6 @@ zval *mysqli_read_property(zval *object, zval *member, int type TSRMLS_DC) ret = FAILURE; obj = (mysqli_object *)zend_objects_get_address(object TSRMLS_CC); - /* object was already destroyed */ - if (!obj->ptr) { - retval = EG(uninitialized_zval_ptr); - return(retval); - } if (member->type != IS_STRING) { tmp_member = *member; |