Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/webui.c
Original file line number Diff line number Diff line change
Expand Up @@ -4346,8 +4346,10 @@ static void _webui_free_all_mem(void) {

// Makes sure we run this once
static bool freed = false;
if (freed)
if (freed) {
_webui_mutex_unlock(&_webui.mutex_mem);
return;
}
freed = true;

// Free all pointers in the list
Expand Down
Loading