Module: wine Branch: master Commit: 0df38064c2940275c110274c9880ec4e7b0e8e3d URL: http://source.winehq.org/git/wine.git/?a=commit;h=0df38064c2940275c110274c98...
Author: Andrew Eikum aeikum@codeweavers.com Date: Wed Feb 10 12:53:42 2016 -0600
ntdll: Initialize variable (Coverity).
Signed-off-by: Andrew Eikum aeikum@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/ntdll/nt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/ntdll/nt.c b/dlls/ntdll/nt.c index 5c8b7fd..a18dfae 100644 --- a/dlls/ntdll/nt.c +++ b/dlls/ntdll/nt.c @@ -2340,7 +2340,7 @@ NTSTATUS WINAPI NtQuerySystemInformation( NTSTATUS WINAPI NtQuerySystemInformationEx(SYSTEM_INFORMATION_CLASS SystemInformationClass, void *Query, ULONG QueryLength, void *SystemInformation, ULONG Length, ULONG *ResultLength) { - ULONG len; + ULONG len = 0; NTSTATUS ret = STATUS_NOT_IMPLEMENTED;
TRACE("(0x%08x,%p,%u,%p,%u,%p) stub\n", SystemInformationClass, Query, QueryLength, SystemInformation,