From 86b6bfb9b7ebfd96f034d8a44ae56628c10154c2 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Tue, 6 May 2014 11:59:41 +0200 Subject: [PATCH] fix bug #67198 (php://input regression) --- main/SAPI.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/SAPI.c b/main/SAPI.c index 8c347cb6d45..44b6b590f2e 100644 --- a/main/SAPI.c +++ b/main/SAPI.c @@ -462,7 +462,7 @@ SAPI_API void sapi_activate(TSRMLS_D) SG(request_info).post_entry = NULL; SG(request_info).proto_num = 1000; /* Default to HTTP 1.0 */ SG(global_request_time) = 0; - + SG(post_read) = 0; /* It's possible to override this general case in the activate() callback, if necessary. */ if (SG(request_info).request_method && !strcmp(SG(request_info).request_method, "HEAD")) { SG(request_info).headers_only = 1;