mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
Fix usage of pointer to stack allocated array outside of the scope the array was declared in
git-svn-id: https://svn.eduke32.com/eduke32@7061 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
b50b1ad198
commit
941aa87bce
1 changed files with 3 additions and 8 deletions
|
@ -45,7 +45,8 @@ LONG MiniDumper::TopLevelFilter( struct _EXCEPTION_POINTERS *pExceptionInfo )
|
|||
hDll = ::LoadLibrary( "DBGHELP.DLL" );
|
||||
}
|
||||
|
||||
LPCTSTR szResult = NULL;
|
||||
LPCTSTR szResult = "DBGHELP.DLL not found";;
|
||||
char szScratch [_MAX_PATH];
|
||||
|
||||
if (hDll)
|
||||
{
|
||||
|
@ -53,7 +54,6 @@ LONG MiniDumper::TopLevelFilter( struct _EXCEPTION_POINTERS *pExceptionInfo )
|
|||
if (pDump)
|
||||
{
|
||||
char szDumpPath[_MAX_PATH];
|
||||
char szScratch [_MAX_PATH];
|
||||
|
||||
// work out a good place for the dump file
|
||||
/*if (!GetTempPath( _MAX_PATH, szDumpPath ))
|
||||
|
@ -104,13 +104,8 @@ LONG MiniDumper::TopLevelFilter( struct _EXCEPTION_POINTERS *pExceptionInfo )
|
|||
szResult = "DBGHELP.DLL too old";
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
szResult = "DBGHELP.DLL not found";
|
||||
}
|
||||
|
||||
if (szResult)
|
||||
::MessageBox( NULL, szResult, m_szAppName, MB_OK );
|
||||
::MessageBox( NULL, szResult, m_szAppName, MB_OK );
|
||||
|
||||
return retval;
|
||||
}
|
Loading…
Reference in a new issue