Commit 56968fb3 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

expand: Initialize a variable (Coverity).

parent d4d51a48
...@@ -30,7 +30,7 @@ static int myprintf(const char* format, ...) ...@@ -30,7 +30,7 @@ static int myprintf(const char* format, ...)
{ {
va_list va; va_list va;
char tmp[8192]; char tmp[8192];
DWORD w; DWORD w = 0;
int len; int len;
va_start(va, format); va_start(va, format);
......
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