From: Rainer Jung Date: Tue, 19 Jan 2016 11:48:15 +0000 (+0000) Subject: Silence compiler warning: X-Git-Tag: 2.5.0-alpha~2375 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=322f418eccff7f76b1ae2eec878fa06ee492be43;p=thirdparty%2Fapache%2Fhttpd.git Silence compiler warning: 'cached' may be used uninitialized in this function git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1725480 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/ssl/mod_ssl_ct.c b/modules/ssl/mod_ssl_ct.c index 5126de71b44..c65d04ccc63 100644 --- a/modules/ssl/mod_ssl_ct.c +++ b/modules/ssl/mod_ssl_ct.c @@ -2133,7 +2133,7 @@ static int ssl_ct_proxy_post_handshake(conn_rec *c, SSL *ssl) apr_pool_t *p = c->pool; apr_status_t rv = APR_SUCCESS; const char *key; - ct_cached_server_data *cached; + ct_cached_server_data *cached = NULL; ct_conn_config *conncfg = get_conn_config(c); server_rec *s = c->base_server; ct_server_config *sconf = ap_get_module_config(s->module_config,