X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=http_inflatestream_object.c;h=ef687d4eb175ab8fe739d28bf40db8aa42a68b67;hb=9f147341fdd31e23ae35f3b24ebad6e58796d7e1;hp=851980ec43a345a355d6680f962ad39d9de4166c;hpb=e37040ebf8a470c77c7ae3498ee582ca20db259c;p=m6w6%2Fext-http diff --git a/http_inflatestream_object.c b/http_inflatestream_object.c index 851980e..ef687d4 100644 --- a/http_inflatestream_object.c +++ b/http_inflatestream_object.c @@ -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])