mod_proxy_fcgi.c:893:19: warning: ‘flushpoll’ may be used uninitialized in this function [-Wmaybe-uninitialized]
This warning is a false positive.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1805490 13f79535-47bb-0310-9956-
ffa450edef68
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];