Commit 8cf1200f authored by David Hedberg's avatar David Hedberg Committed by Alexandre Julliard

shell32: Fix a leak in the ebrowser travellog (Valgrind).

parent f6ce8b71
......@@ -181,6 +181,7 @@ static void travellog_remove_entry(ExplorerBrowserImpl *This, travellog_entry *e
TRACE("Removing %p\n", entry);
list_remove(&entry->entry);
ILFree(entry->pidl);
HeapFree(GetProcessHeap(), 0, entry);
This->travellog_count--;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment