X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=http_inflatestream_object.c;h=ef687d4eb175ab8fe739d28bf40db8aa42a68b67;hp=851980ec43a345a355d6680f962ad39d9de4166c;hb=c8dff7011092296f9fcc12e68ad8eef18b19cdf4;hpb=f65531996b3a8ff72e02531b85ed05393f409900 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])