easylogging++: test for NULL before dereference

release-v0.5.1
moneromooo-monero 6 years ago
parent 7ece1550e1
commit 5fdcda50ee
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -1975,11 +1975,11 @@ void VRegistry::setCategories(const char* categories, bool clear) {
m_cached_allowed_categories.clear();
m_categoriesString.clear();
}
if (!categories)
return;
if (!m_categoriesString.empty())
m_categoriesString += ",";
m_categoriesString += categories;
if (!categories)
return;
bool isCat = true;
bool isLevel = false;

Loading…
Cancel
Save