diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2023-09-11 00:03:28 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2023-09-11 00:03:28 +0200 |
commit | d2f2defca9eac0d7f779296bf52f36b161fc6b31 (patch) | |
tree | 37146ca9339171563af3916e5d571c55e8812f42 /src/SetupDLL/Setup.c | |
parent | aa311a6fad13357772c6e3c85a4bfe393df9382e (diff) | |
download | VeraCrypt-d2f2defca9eac0d7f779296bf52f36b161fc6b31.tar.gz VeraCrypt-d2f2defca9eac0d7f779296bf52f36b161fc6b31.zip |
Windows: replace CoInitialize calls with CoInitializeEx
Diffstat (limited to 'src/SetupDLL/Setup.c')
-rw-r--r-- | src/SetupDLL/Setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SetupDLL/Setup.c b/src/SetupDLL/Setup.c index 6a288a5c..1c3782dd 100644 --- a/src/SetupDLL/Setup.c +++ b/src/SetupDLL/Setup.c @@ -1994,7 +1994,7 @@ BOOL InitDll (MSIHANDLE hInstaller) InitGlobalLocks (); SetErrorMode (SetErrorMode (0) | SEM_FAILCRITICALERRORS | SEM_NOOPENFILEERRORBOX); - CoInitialize (NULL); + CoInitializeEx(NULL, COINIT_APARTMENTTHREADED | COINIT_DISABLE_OLE1DDE); // Force language to english to read strings from the default Language.xml embedded in the DLL. SetPreferredLangId ("en"); |