X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;ds=sidebyside;f=http_inflatestream_object.c;h=39abcee3edbfbc74e3019c57eee5be33f881943f;hb=45abbc6fd229be01e963e9642a03118d3c99131c;hp=853e4fd3363693ea905898ced2d094f1ad1f0ddc;hpb=97e2daa64f5afd4db89b7999778f0726a276fc98;p=m6w6%2Fext-http diff --git a/http_inflatestream_object.c b/http_inflatestream_object.c index 853e4fd..39abcee 100644 --- a/http_inflatestream_object.c +++ b/http_inflatestream_object.c @@ -218,14 +218,15 @@ PHP_METHOD(HttpInflateStream, finish) updated = erealloc(updated, updated_len + decoded_len + 1); updated[updated_len + decoded_len] = '\0'; memcpy(updated + updated_len, decoded, decoded_len); + STR_FREE(decoded); updated_len += decoded_len; RETVAL_STRINGL(updated, updated_len, 0); - STR_FREE(decoded); } else { - RETVAL_STRINGL(decoded, decoded_len, 0); STR_FREE(updated); + RETVAL_STRINGL(decoded, decoded_len, 0); } } else { + STR_FREE(updated); RETVAL_FALSE; }