mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 17:14:41 +00:00
Fix "var might be used uninitialized" warning
svn path=/trunk/; revision=17884
This commit is contained in:
parent
17c7dd0144
commit
0dee5251b9
1 changed files with 1 additions and 1 deletions
|
@ -140,7 +140,7 @@ static VOID DoSaveFile(VOID)
|
|||
HANDLE hFile;
|
||||
DWORD dwNumWrite;
|
||||
LPWSTR pTemp;
|
||||
LPVOID pConverted;
|
||||
LPVOID pConverted = NULL;
|
||||
DWORD size;
|
||||
BYTE bom[3];
|
||||
int iBomSize = 0;
|
||||
|
|
Loading…
Reference in a new issue