[EXPLORER-NEW]

* Cleanup in case of error. CID 1248426

[RSHELL]
* Add uninitialized class fields. CID 1248477
* Avoid leaking memory. CID 1248438

[BROWSEUI]
* Fix potential overwriting of a variable. CID 716363
* Save the rshell handle instead of loading it every time. CID 1248435
* Fix leaked PIDL. CID 1248418 

[SHELL32]
* Fix GCC build. And one small nickpick that has been bothering me for a long time.

svn path=/branches/shell-experiments/; revision=64864
This commit is contained in:
David Quintana
2014-10-21 12:24:15 +00:00
parent 96cdae0a7c
commit 9abc368186
7 changed files with 31 additions and 18 deletions
+4 -1
View File
@@ -35,8 +35,11 @@ HRESULT WINAPI CMenuDeskBar_Constructor(REFIID riid, LPVOID *ppv)
CMenuDeskBar::CMenuDeskBar() :
m_Client(NULL),
m_ClientWindow(NULL),
m_IconSize(0),
m_Banner(NULL),
m_Shown(FALSE)
m_Shown(FALSE),
m_ShowFlags(0)
{
}