Author: pschweitzer
Date: Sat Oct 24 09:36:16 2015
New Revision: 69666
URL:
http://svn.reactos.org/svn/reactos?rev=69666&view=rev
Log:
[MSCOREE]
Backport Wine commit: 85d49c5819fb4494d9f81c56c3504bef5732b726
"Correct possible uninitialized variable (clang)." by Alistair Leslie-Hughes
CID 215556
Modified:
trunk/reactos/dll/win32/mscoree/corruntimehost.c
Modified: trunk/reactos/dll/win32/mscoree/corruntimehost.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/mscoree/corrunti…
==============================================================================
--- trunk/reactos/dll/win32/mscoree/corruntimehost.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/mscoree/corruntimehost.c [iso-8859-1] Sat Oct 24 09:36:16
2015
@@ -1218,7 +1218,7 @@
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;