- Nuke persist_alloc().

This commit is contained in:
Andi Gutmans 2002-06-22 13:52:07 +00:00
parent c83f5a530d
commit b53569c9e8
7 changed files with 3 additions and 71 deletions

View file

@ -43,7 +43,7 @@ static inline void zend_objects_destroy_object(zend_object *object, zend_object_
zend_objects_call_destructor(object, handle TSRMLS_CC);
/* Nuke the object */
zend_hash_destroy(object->properties);
efree(object->properties);
FREE_HASHTABLE(object->properties);
efree(object);
}