Commit 69f01adf authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

browseui: HeapFree after deleting the cs (coverity).

parent 97dbccf5
...@@ -265,9 +265,9 @@ static void ProgressDialog_Destructor(ProgressDialog *This) ...@@ -265,9 +265,9 @@ static void ProgressDialog_Destructor(ProgressDialog *This)
heap_free(This->lines[2]); heap_free(This->lines[2]);
heap_free(This->cancelMsg); heap_free(This->cancelMsg);
heap_free(This->title); heap_free(This->title);
heap_free(This);
This->cs.DebugInfo->Spare[0] = 0; This->cs.DebugInfo->Spare[0] = 0;
DeleteCriticalSection(&This->cs); DeleteCriticalSection(&This->cs);
heap_free(This);
BROWSEUI_refCount--; BROWSEUI_refCount--;
} }
......
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