Skip to content
Snippets Groups Projects
Commit 8a6ca5ad authored by Michael McCormack's avatar Michael McCormack Committed by Alexandre Julliard
Browse files

Don't use free'd pointer in status control - found by Valgrind.

parent 4b28f0f9
No related branches found
No related tags found
No related merge requests found
......@@ -807,8 +807,8 @@ STATUSBAR_WMDestroy (STATUSWINDOWINFO *infoPtr)
if (infoPtr->hwndToolTip)
DestroyWindow (infoPtr->hwndToolTip);
Free (infoPtr);
SetWindowLongW(infoPtr->Self, 0, 0);
Free (infoPtr);
return 0;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment