mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 08:55:19 +00:00
[MSCOREE]
Backport Wine commit: 85d49c5819fb4494d9f81c56c3504bef5732b726 "Correct possible uninitialized variable (clang)." by Alistair Leslie-Hughes CID 215556 svn path=/trunk/; revision=69666
This commit is contained in:
parent
e21fa420f0
commit
383bf6699a
1 changed files with 1 additions and 1 deletions
|
@ -1218,7 +1218,7 @@ HRESULT create_monodata(REFIID riid, LPVOID *ppObj )
|
||||||
WCHAR path[CHARS_IN_GUID + ARRAYSIZE(wszCLSIDSlash) + ARRAYSIZE(wszInprocServer32) - 1];
|
WCHAR path[CHARS_IN_GUID + ARRAYSIZE(wszCLSIDSlash) + ARRAYSIZE(wszInprocServer32) - 1];
|
||||||
MonoDomain *domain;
|
MonoDomain *domain;
|
||||||
MonoAssembly *assembly;
|
MonoAssembly *assembly;
|
||||||
ICLRRuntimeInfo *info;
|
ICLRRuntimeInfo *info = NULL;
|
||||||
RuntimeHost *host;
|
RuntimeHost *host;
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
HKEY key;
|
HKEY key;
|
||||||
|
|
Loading…
Reference in a new issue