projects
/
reactos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5a9218f
)
[browseui]
author
Andrew Hill
<ash77@reactos.org>
Sun, 1 Nov 2009 02:26:24 +0000
(
02:26
+0000)
committer
Andrew Hill
<ash77@reactos.org>
Sun, 1 Nov 2009 02:26:24 +0000
(
02:26
+0000)
- The global class instance _AtlComModule needs to be constructed with placement new also
svn path=/trunk/; revision=43892
reactos/dll/win32/browseui/browseui.cpp
patch
|
blob
|
history
diff --git
a/reactos/dll/win32/browseui/browseui.cpp
b/reactos/dll/win32/browseui/browseui.cpp
index
ed547b0
..
cea6176
100644
(file)
--- a/
reactos/dll/win32/browseui/browseui.cpp
+++ b/
reactos/dll/win32/browseui/browseui.cpp
@@
-77,6
+77,7
@@
STDAPI_(BOOL) DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID fImpLoad)
new (&gModule) CBrowseUIModule;
new (&gWinModule) CAtlWinModule;
new (&_AtlBaseModule) CAtlBaseModule;
+ new (&_AtlComModule) CAtlComModule;
if (dwReason == DLL_PROCESS_ATTACH)
{