Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Core/Libraries/Source/debug/debug_debug.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@

void Debug::InstallExceptionHandler(void)
{
_set_se_translator(LocalSETranslator);

Check warning on line 263 in Core/Libraries/Source/debug/debug_debug.cpp

View workflow job for this annotation

GitHub Actions / Build GeneralsMD / win32-profile+e

calling _set_se_translator() requires /EHa

Check warning on line 263 in Core/Libraries/Source/debug/debug_debug.cpp

View workflow job for this annotation

GitHub Actions / Build GeneralsMD / win32+e

calling _set_se_translator() requires /EHa
}

bool Debug::SkipNext(void)
Expand Down Expand Up @@ -1254,7 +1254,7 @@
// potentially dangerous (fixed string buffer...)
va_list va;
va_start(va,fmt);
wvsprintf(curSource,fmt,va);
vsnprintf(curSource,sizeof(curSource),fmt,va);
va_end(va);
__ASSERT(curSource[sizeof(curSource)-1]==0);
}
Expand Down
Loading