Commit 3cadbbb4 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

shell32: Use a proper deallocator (Coverity).

parent 0cb52a9c
......@@ -562,7 +562,7 @@ static HDPA enum_bucket_trashinfos(const TRASH_BUCKET *bucket, int *count)
goto failed;
if (DPA_InsertPtr(ret, DPA_APPEND, filename) == -1)
{
SHFree(filename);
LocalFree(filename);
goto failed;
}
(*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