You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by bn...@apache.org on 2001/11/30 20:17:47 UTC

cvs commit: httpd-2.0/modules/proxy proxy_ftp.c

bnicholes    01/11/30 11:17:47

  Modified:    modules/proxy proxy_ftp.c
  Log:
  Got rid of an annoying uninitialized variable compiler warning
  
  Revision  Changes    Path
  1.83      +1 -1      httpd-2.0/modules/proxy/proxy_ftp.c
  
  Index: proxy_ftp.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/proxy/proxy_ftp.c,v
  retrieving revision 1.82
  retrieving revision 1.83
  diff -u -r1.82 -r1.83
  --- proxy_ftp.c	2001/11/14 21:18:46	1.82
  +++ proxy_ftp.c	2001/11/30 19:17:47	1.83
  @@ -537,7 +537,7 @@
       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;