comctl32/hotkey: Remove useless line.

This commit is contained in:
Nikolay Sivov 2009-05-24 23:36:11 +04:00 committed by Alexandre Julliard
parent 8296075fa7
commit 644b5f0e40

View file

@ -239,10 +239,9 @@ HOTKEY_Create (HOTKEY_INFO *infoPtr, const CREATESTRUCTW *lpcs)
static LRESULT
HOTKEY_Destroy (HOTKEY_INFO *infoPtr)
{
HWND hwnd = infoPtr->hwndSelf;
/* free hotkey info data */
SetWindowLongPtrW (infoPtr->hwndSelf, 0, 0);
Free (infoPtr);
SetWindowLongPtrW (hwnd, 0, 0);
return 0;
}