From: Pierre Schweitzer Date: Sat, 24 Oct 2015 09:36:16 +0000 (+0000) Subject: [MSCOREE] X-Git-Tag: ReactOS-0.4.0~389 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=383bf6699a05a1f85210389e44ca512aef5da88a [MSCOREE] Backport Wine commit: 85d49c5819fb4494d9f81c56c3504bef5732b726 "Correct possible uninitialized variable (clang)." by Alistair Leslie-Hughes CID 215556 svn path=/trunk/; revision=69666 --- diff --git a/reactos/dll/win32/mscoree/corruntimehost.c b/reactos/dll/win32/mscoree/corruntimehost.c index ea2e2142320..847d6fa821d 100644 --- a/reactos/dll/win32/mscoree/corruntimehost.c +++ b/reactos/dll/win32/mscoree/corruntimehost.c @@ -1218,7 +1218,7 @@ HRESULT create_monodata(REFIID riid, LPVOID *ppObj ) WCHAR path[CHARS_IN_GUID + ARRAYSIZE(wszCLSIDSlash) + ARRAYSIZE(wszInprocServer32) - 1]; MonoDomain *domain; MonoAssembly *assembly; - ICLRRuntimeInfo *info; + ICLRRuntimeInfo *info = NULL; RuntimeHost *host; HRESULT hr; HKEY key;