better quick fix
This commit is contained in:
Pierre-Louis Bonicoli 2011-01-26 21:47:12 +01:00
parent 81b8ed48cf
commit 2e49437ed7
1 changed files with 5 additions and 5 deletions

View File

@ -357,11 +357,11 @@ logstore_t *log_find_file(log_t *logdata, const char *destination)
return NULL;
mylog(LOG_DEBUG, "Creating new logfile for %s: %s",
destination, filename);
if (!log_add_file(logdata, destination, filename)) {
free(filename);
return NULL;
}
}
if (!log_add_file(logdata, destination, filename)) {
if (filename)
free(filename);
return NULL;
}
store = hash_get(&logdata->logfgs, destination);
assert(store);