From 85d49c5819fb4494d9f81c56c3504bef5732b726 Mon Sep 17 00:00:00 2001 From: Alistair Leslie-Hughes Date: Tue, 31 Jan 2012 18:56:53 +1100 Subject: [PATCH] mscoree: Correct possible uninitialized variable (clang). --- dlls/mscoree/corruntimehost.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/mscoree/corruntimehost.c b/dlls/mscoree/corruntimehost.c index d5c94c1b396..02627577226 100644 --- a/dlls/mscoree/corruntimehost.c +++ b/dlls/mscoree/corruntimehost.c @@ -1239,7 +1239,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; -- 2.11.4.GIT