From 5a2cce3163f441390ef6d97fef25e4ad9687af34 Mon Sep 17 00:00:00 2001 From: Christophe Jaillet Date: Sat, 19 Aug 2017 07:42:16 +0000 Subject: [PATCH] =?utf8?q?Fix=20a=20compilation=20warning=20introduced=20b?= =?utf8?q?y=20r1802040.=20mod=5Fproxy=5Ffcgi.c:893:19:=20warning:=20?= =?utf8?q?=E2=80=98flushpoll=E2=80=99=20may=20be=20used=20uninitialized=20?= =?utf8?q?in=20this=20function=20[-Wmaybe-uninitialized]?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This warning is a false positive. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805490 13f79535-47bb-0310-9956-ffa450edef68 --- modules/proxy/mod_proxy_fcgi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/proxy/mod_proxy_fcgi.c b/modules/proxy/mod_proxy_fcgi.c index 019f4a9335..80c89381c0 100644 --- a/modules/proxy/mod_proxy_fcgi.c +++ b/modules/proxy/mod_proxy_fcgi.c @@ -532,7 +532,7 @@ static apr_status_t dispatch(proxy_conn_rec *conn, proxy_dir_conf *conf, ap_fcgi_header header; unsigned char farray[AP_FCGI_HEADER_LEN]; apr_pollfd_t pfd; - apr_pollfd_t *flushpoll; + apr_pollfd_t *flushpoll = NULL; apr_int32_t flushpoll_fd; int header_state = HDR_STATE_READING_HEADERS; char stack_iobuf[AP_IOBUFSIZE]; -- 2.50.1