Don't fail if ressetting non existing store.
This commit is contained in:
parent
94b5ac4797
commit
8cea2bdb71
@ -706,10 +706,11 @@ void log_reset_store(log_t *log, const char *storename)
|
|||||||
logstore_t *store;
|
logstore_t *store;
|
||||||
|
|
||||||
store = hash_get(&log->logfgs, storename);
|
store = hash_get(&log->logfgs, storename);
|
||||||
if (store)
|
if (store) {
|
||||||
log_reset(store);
|
log_reset(store);
|
||||||
if (!ischannel(*storename))
|
if (!ischannel(*storename))
|
||||||
log_drop(log, storename);
|
log_drop(log, storename);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void log_client_none_connected(log_t *logdata)
|
void log_client_none_connected(log_t *logdata)
|
||||||
|
Loading…
Reference in New Issue
Block a user