From: Graham Leggett Date: Wed, 22 Sep 2004 16:50:29 +0000 (+0000) Subject: Remove the second initialisation of the variable to NULL. It is already X-Git-Tag: 2.1.1~218 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b38e066be4f1986d2d88de03ea4cbad215124cc6;p=thirdparty%2Fapache%2Fhttpd.git Remove the second initialisation of the variable to NULL. It is already NULL in the definition. PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@105253 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/ldap/util_ldap_cache_mgr.c b/modules/ldap/util_ldap_cache_mgr.c index a2fd5b08201..a46bcc93161 100644 --- a/modules/ldap/util_ldap_cache_mgr.c +++ b/modules/ldap/util_ldap_cache_mgr.c @@ -254,8 +254,6 @@ util_url_node_t *util_ald_create_caches(util_ldap_state_t *st, const char *url) newcurl = util_ald_cache_insert(st->util_ldap_cache, &curl); } - else - newcurl = NULL; return newcurl; }