From 5a5f7ea43b87e3580b48cd9e6e5b8a3bfc68bcae Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Thu, 25 Sep 2014 14:53:32 +0000 Subject: [PATCH] [SECURE32] - Avoid uninitialized variable use aka fix MSVC build svn path=/trunk/; revision=64269 --- reactos/dll/win32/secur32/lsalpc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/dll/win32/secur32/lsalpc.c b/reactos/dll/win32/secur32/lsalpc.c index 1b62770021e..31104f65d02 100644 --- a/reactos/dll/win32/secur32/lsalpc.c +++ b/reactos/dll/win32/secur32/lsalpc.c @@ -71,7 +71,7 @@ LsapOpenLsaPort(VOID) SecurityQos.EffectiveOnly = TRUE; RtlZeroMemory(&ConnectInfo, - ConnectInfoLength); + sizeof(ConnectInfo)); ConnectInfo.CreateContext = FALSE;