From: Howard Chu Date: Fri, 29 Oct 2021 13:24:45 +0000 (+0100) Subject: ITS#9730 fix logging config uninit'd rc X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eab4ece0c26ac2a15195b905150573a09da8c345;p=thirdparty%2Fopenldap.git ITS#9730 fix logging config uninit'd rc --- diff --git a/servers/slapd/logging.c b/servers/slapd/logging.c index 0a21ca8085..43b52d796b 100644 --- a/servers/slapd/logging.c +++ b/servers/slapd/logging.c @@ -552,7 +552,7 @@ loglevel_print( FILE *out ) int config_logging(ConfigArgs *c) { - int i, rc; + int i, rc = 0; if ( loglevel_ops == NULL ) { loglevel_init();