X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;ds=sidebyside;f=http_deflatestream_object.c;fp=http_deflatestream_object.c;h=b535cf5aaca536575f421f7f45b486c643b78224;hb=c8dff7011092296f9fcc12e68ad8eef18b19cdf4;hp=161578ff823d521100b796081276bac6346d1eea;hpb=f65531996b3a8ff72e02531b85ed05393f409900;p=m6w6%2Fext-http diff --git a/http_deflatestream_object.c b/http_deflatestream_object.c index 161578f..b535cf5 100644 --- a/http_deflatestream_object.c +++ b/http_deflatestream_object.c @@ -126,14 +126,10 @@ void _http_deflatestream_object_free(zend_object *object TSRMLS_DC) { http_deflatestream_object *o = (http_deflatestream_object *) object; - if (OBJ_PROP(o)) { - zend_hash_destroy(OBJ_PROP(o)); - FREE_HASHTABLE(OBJ_PROP(o)); - } if (o->stream) { http_encoding_deflate_stream_free(&o->stream); } - efree(o); + freeObject(o); } /* {{{ proto void HttpDeflateStream::__construct([int flags = 0])