X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=http_inflatestream_object.c;h=31c728fdf118e7ba9ca35d502ef4b63e0bcfe520;hp=853e4fd3363693ea905898ced2d094f1ad1f0ddc;hb=d650022122969644c33bd03a552af1a631429e16;hpb=97e2daa64f5afd4db89b7999778f0726a276fc98 diff --git a/http_inflatestream_object.c b/http_inflatestream_object.c index 853e4fd..31c728f 100644 --- a/http_inflatestream_object.c +++ b/http_inflatestream_object.c @@ -6,17 +6,12 @@ | modification, are permitted provided that the conditions mentioned | | in the accompanying LICENSE file are met. | +--------------------------------------------------------------------+ - | Copyright (c) 2004-2005, Michael Wallner | + | Copyright (c) 2004-2006, Michael Wallner | +--------------------------------------------------------------------+ */ /* $Id$ */ - -#ifdef HAVE_CONFIG_H -# include "config.h" -#endif - #define HTTP_WANT_ZLIB #include "php_http.h" @@ -27,19 +22,19 @@ #include "php_http_exception_object.h" #include "php_http_inflatestream_object.h" -#define HTTP_BEGIN_ARGS(method, ret_ref, req_args) HTTP_BEGIN_ARGS_EX(HttpInflateStream, method, ret_ref, req_args) -#define HTTP_EMPTY_ARGS(method, ret_ref) HTTP_EMPTY_ARGS_EX(HttpInflateStream, method, ret_ref) -#define HTTP_INFLATE_ME(method, visibility) PHP_ME(HttpInflateStream, method, HTTP_ARGS(HttpInflateStream, method), visibility) +#define HTTP_BEGIN_ARGS(method, req_args) HTTP_BEGIN_ARGS_EX(HttpInflateStream, method, 0, req_args) +#define HTTP_EMPTY_ARGS(method) HTTP_EMPTY_ARGS_EX(HttpInflateStream, method, 0) +#define HTTP_INFLATE_ME(method, visibility) PHP_ME(HttpInflateStream, method, HTTP_ARGS(HttpInflateStream, method), visibility) -HTTP_BEGIN_ARGS(update, 0, 1) +HTTP_BEGIN_ARGS(update, 1) HTTP_ARG_VAL(data, 0) HTTP_END_ARGS; -HTTP_BEGIN_ARGS(flush, 0, 0) +HTTP_BEGIN_ARGS(flush, 0) HTTP_ARG_VAL(data, 0) HTTP_END_ARGS; -HTTP_BEGIN_ARGS(finish, 0, 0) +HTTP_BEGIN_ARGS(finish, 0) HTTP_ARG_VAL(data, 0) HTTP_END_ARGS; @@ -218,14 +213,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; }