ITS#8082 plug benign memleak

This commit is contained in:
Howard Chu 2015-08-19 17:44:08 +01:00
parent a96fc51ebb
commit f385fd5ad1

View file

@ -731,6 +731,7 @@ read_config_file(const char *fname, int depth, ConfigArgs *cf, ConfigTable *cft)
Debug(LDAP_DEBUG_ANY,
"could not stat config file \"%s\": %s (%d)\n",
fname, strerror(errno), errno);
ch_free( c->argv );
ch_free( c );
return(1);
}
@ -740,6 +741,7 @@ read_config_file(const char *fname, int depth, ConfigArgs *cf, ConfigTable *cft)
Debug(LDAP_DEBUG_ANY,
"regular file expected, got \"%s\"\n",
fname, 0, 0 );
ch_free( c->argv );
ch_free( c );
return(1);
}
@ -750,6 +752,7 @@ read_config_file(const char *fname, int depth, ConfigArgs *cf, ConfigTable *cft)
Debug(LDAP_DEBUG_ANY,
"could not open config file \"%s\": %s (%d)\n",
fname, strerror(errno), errno);
ch_free( c->argv );
ch_free( c );
return(1);
}