From: Stefan Eissing Date: Thu, 5 Jul 2018 10:18:46 +0000 (+0000) Subject: On the trunk: X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6b28a01eaac59560b517b9a3131cbf3ccc31e206;p=apache On the trunk: Silencing a gcc uninitialized warning. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1835117 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/md/md_reg.c b/modules/md/md_reg.c index 459c15f157..c269e0a9ac 100644 --- a/modules/md/md_reg.c +++ b/modules/md/md_reg.c @@ -579,7 +579,7 @@ static apr_status_t creds_load(void *baton, apr_pool_t *p, apr_pool_t *ptemp, va md_reg_t *reg = baton; md_pkey_t *privkey; apr_array_header_t *pubcert; - md_creds_t *creds, **pcreds; + md_creds_t *creds = NULL, **pcreds; const md_t *md; md_cert_state_t cert_state; md_store_group_t group;