From 2ce78c4f63d06f43a2e33c936ed58e7034fa88bd Mon Sep 17 00:00:00 2001 From: David Quintana Date: Thu, 15 Jan 2015 23:23:57 +0000 Subject: [PATCH] [EXPLORER] * Fix a HWND leak (and potential disaster that never happened) I noticed while investigating CORE-9008 svn path=/trunk/; revision=66042 --- reactos/base/shell/explorer/traywnd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/base/shell/explorer/traywnd.cpp b/reactos/base/shell/explorer/traywnd.cpp index 26c0ad416ec..c2faf4363a5 100644 --- a/reactos/base/shell/explorer/traywnd.cpp +++ b/reactos/base/shell/explorer/traywnd.cpp @@ -1671,7 +1671,7 @@ ChangePos: DisplayTrayProperties(hwnd); m_TrayPropertiesOwner = NULL; - DestroyWindow(); + ::DestroyWindow(hwnd); return 0; }