X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=php_http_encoding.c;h=7f0462c78c1c5537e7ee2438fb74d2999836f368;hp=403d781832c96ed1651b1edbff30a95aa895fa04;hb=refs%2Fheads%2Fv2.1.x;hpb=731b6a841374147b766c850b2a90c6bfade6f9f1 diff --git a/php_http_encoding.c b/php_http_encoding.c index 403d781..7f0462c 100644 --- a/php_http_encoding.c +++ b/php_http_encoding.c @@ -53,7 +53,6 @@ const char *php_http_encoding_dechunk(const char *encoded, size_t encoded_len, c php_error_docref(NULL TSRMLS_CC, E_NOTICE, "Data does not seem to be chunked encoded"); memcpy(*decoded, encoded, encoded_len); *decoded_len = encoded_len; - decoded[*decoded_len] = '\0'; return encoded + encoded_len; } else { efree(*decoded);