From: Bradley Nicholes Date: Fri, 30 Nov 2001 19:17:47 +0000 (+0000) Subject: Got rid of an annoying uninitialized variable compiler warning X-Git-Tag: 2.0.30~324 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=72a5a2a0263c127c782b19480226eace9c06f0ec;p=apache Got rid of an annoying uninitialized variable compiler warning git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92266 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/proxy_ftp.c b/modules/proxy/proxy_ftp.c index 7748a3d587..78a3282609 100644 --- a/modules/proxy/proxy_ftp.c +++ b/modules/proxy/proxy_ftp.c @@ -537,7 +537,7 @@ int ap_proxy_ftp_handler(request_rec *r, proxy_server_conf *conf, apr_pool_t *p = r->pool; conn_rec *c = r->connection; proxy_conn_rec *backend; - apr_socket_t *sock, *local_sock, *remote_sock; + apr_socket_t *sock, *local_sock, *remote_sock=NULL; apr_sockaddr_t *connect_addr; apr_status_t rv; conn_rec *origin, *remote;