Commit eb699821 authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

ntdll: Ensure that performance information is initialized (scan-build).

parent 6e10f8fa
......@@ -2439,7 +2439,7 @@ NTSTATUS WINAPI NtQuerySystemInformation(
if ((fp = fopen("/proc/meminfo", "r")))
{
unsigned long long totalram, freeram, totalswap, freeswap;
unsigned long long totalram = 0, freeram = 0, totalswap = 0, freeswap = 0;
char line[64];
while (fgets(line, sizeof(line), fp))
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment