forked from espressif/esp-idf
log: fix minor memory leak when cleaning list of log levels
This commit is contained in:
@@ -174,8 +174,10 @@ void esp_log_level_set(const char* tag, esp_log_level_t level)
|
|||||||
|
|
||||||
void clear_log_level_list()
|
void clear_log_level_list()
|
||||||
{
|
{
|
||||||
while( !SLIST_EMPTY(&s_log_tags)) {
|
uncached_tag_entry_t *it;
|
||||||
|
while((it = SLIST_FIRST(&s_log_tags)) != NULL) {
|
||||||
SLIST_REMOVE_HEAD(&s_log_tags, entries );
|
SLIST_REMOVE_HEAD(&s_log_tags, entries );
|
||||||
|
free(it);
|
||||||
}
|
}
|
||||||
s_log_cache_entry_count = 0;
|
s_log_cache_entry_count = 0;
|
||||||
s_log_cache_max_generation = 0;
|
s_log_cache_max_generation = 0;
|
||||||
|
Reference in New Issue
Block a user