Author: dquintana Date: Thu Jan 15 23:23:57 2015 New Revision: 66042
URL: http://svn.reactos.org/svn/reactos?rev=66042&view=rev Log: [EXPLORER] * Fix a HWND leak (and potential disaster that never happened) I noticed while investigating CORE-9008
Modified: trunk/reactos/base/shell/explorer/traywnd.cpp
Modified: trunk/reactos/base/shell/explorer/traywnd.cpp URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/explorer/traywnd... ============================================================================== --- trunk/reactos/base/shell/explorer/traywnd.cpp [iso-8859-1] (original) +++ trunk/reactos/base/shell/explorer/traywnd.cpp [iso-8859-1] Thu Jan 15 23:23:57 2015 @@ -1671,7 +1671,7 @@ DisplayTrayProperties(hwnd);
m_TrayPropertiesOwner = NULL; - DestroyWindow(); + ::DestroyWindow(hwnd);
return 0; }