summaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2020-05-22 14:33:24 +0200
committerJulien Nabet <serval2412@yahoo.fr>2020-05-22 22:22:15 +0200
commitb587de60d4e6aa96238766272d94f1499b22f696 (patch)
tree87c816f7d444f79aceb81aca6969adf8c0a14f98 /shell
parent7f264f4beec931833b390ae1bbb93b2e22b4ad8a (diff)
Prefer CoInitializeEx instead of CoInitialize
As https://docs.microsoft.com/fr-fr/windows/win32/api/objbase/nf-objbase-coinitialize?redirectedfrom=MSDN advised. Moreover, it'll make concurrency model explicit Change-Id: I247a49248bf45beb64a7985a7c0d078ee48efe2d Change-Id: I6e755fd516d9fb2dd2a9df0c66d9afd6070447ea Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94669 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'shell')
-rw-r--r--shell/source/win32/SysShExec.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/source/win32/SysShExec.cxx b/shell/source/win32/SysShExec.cxx
index 874c4f5e94cf..93eeaee36f03 100644
--- a/shell/source/win32/SysShExec.cxx
+++ b/shell/source/win32/SysShExec.cxx
@@ -156,7 +156,7 @@ CSysShExec::CSysShExec( const css::uno::Reference< css::uno::XComponentContext >
* Once this changed, we can remove the uninitialize call.
*/
CoUninitialize();
- CoInitialize( nullptr );
+ CoInitializeEx( nullptr, COINIT_APARTMENTTHREADED );
}
namespace