Commit c862085b authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

Avoid "might be used uninitialized" warning in exercizeServer().

parent 2d56c3d6
......@@ -457,7 +457,7 @@ static void exercizeServer(const char *pipename, HANDLE serverThread)
trace("exercizeServer starting\n");
for (i = 0; i < 8; i++) {
HANDLE hFile;
HANDLE hFile=INVALID_HANDLE_VALUE;
const char obuf[] = "Bit Bucket";
char ibuf[32];
DWORD written;
......
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