Fix uninitialized variable as caught by cppcheck.

svn path=/trunk/; revision=44699
This commit is contained in:
Evan Huus 2012-08-29 22:53:21 +00:00
parent baf111a23c
commit 1ccee24ec5
1 changed files with 1 additions and 1 deletions

View File

@ -244,7 +244,7 @@ raw_pipe_open(const char *pipe_name)
#ifndef _WIN32
ws_statb64 pipe_stat;
#else
char *pncopy, *pos;
char *pncopy, *pos = NULL;
DWORD err;
wchar_t *err_str;
HANDLE hPipe = NULL;