- fix overload guards leaks
[m6w6/ext-http] / http_inflatestream_object.c
index 851980ec43a345a355d6680f962ad39d9de4166c..ef687d4eb175ab8fe739d28bf40db8aa42a68b67 100644 (file)
@@ -115,14 +115,10 @@ void _http_inflatestream_object_free(zend_object *object TSRMLS_DC)
 {
        http_inflatestream_object *o = (http_inflatestream_object *) object;
 
-       if (OBJ_PROP(o)) {
-               zend_hash_destroy(OBJ_PROP(o));
-               FREE_HASHTABLE(OBJ_PROP(o));
-       }
        if (o->stream) {
                http_encoding_inflate_stream_free(&o->stream);
        }
-       efree(o);
+       freeObject(o);
 }
 
 /* {{{ proto void HttpInflateStream::__construct([int flags = 0])