From: Michael Wallner Date: Tue, 5 Aug 2014 06:07:26 +0000 (+0200) Subject: fix write on stack X-Git-Tag: RELEASE_2_1_0_RC2~1 X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=commitdiff_plain;h=57bfeaae7196fd754aad2150dfd1d3258ea8ce66 fix write on stack --- 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);