Fix reference counting of Log::Filter "config" field

Which can potentially be a minor memory leak if there's a lot of dynamic
adding/removing of logging filters.
This commit is contained in:
Jon Siwek 2019-12-31 10:40:48 -08:00
parent 273eb19ff5
commit bf05add542

View file

@ -98,6 +98,7 @@ Manager::Filter::~Filter()
free(fields);
Unref(path_val);
Unref(config);
}
Manager::Stream::~Stream()