Browse Source

MFH: Fixed bug #34802 (Fixed crash on object instantiation failure).

PHP-5.1
Ilia Alshanetsky 21 years ago
parent
commit
58a0906bf9
  1. 2
      Zend/zend_objects_API.c

2
Zend/zend_objects_API.c

@ -51,7 +51,7 @@ ZEND_API void zend_objects_store_call_destructors(zend_objects_store *objects TS
if (!objects->object_buckets[i].destructor_called) {
objects->object_buckets[i].destructor_called = 1;
if (obj->dtor) {
if (obj->dtor && obj->object) {
obj->dtor(obj->object, i TSRMLS_CC);
}
}

Loading…
Cancel
Save