mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
[NOTEPAD]
- Don't assume out parameter initialization on failure. Patch by Samuel Serapión CORE-7292 #resolve svn path=/trunk/; revision=59585
This commit is contained in:
parent
4cd30e4431
commit
86041ea09c
1 changed files with 1 additions and 1 deletions
|
@ -293,7 +293,7 @@ VOID DoOpenFile(LPCTSTR szFileName)
|
|||
{
|
||||
static const TCHAR dotlog[] = _T(".LOG");
|
||||
HANDLE hFile;
|
||||
LPTSTR pszText;
|
||||
LPTSTR pszText = NULL;
|
||||
DWORD dwTextLen;
|
||||
TCHAR log[5];
|
||||
|
||||
|
|
Loading…
Reference in a new issue