Skip to content
Merged
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
4 changes: 2 additions & 2 deletions Core/Libraries/Source/debug/debug_debug.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ bool Debug::AssertDone(void)
"time being (stops logging this assertion as well).";
char *help=(char *)DebugAllocMemory(ioBuffer[curType].used+strlen(addInfo)+1);
strcpy(help,ioBuffer[curType].buffer+82);
strlcat(help, addInfo, ARRAY_SIZE(help));
strcat(help, addInfo);

// First hit? Then do a stack trace
if (curFrameEntry->hits==1)
Expand Down Expand Up @@ -612,7 +612,7 @@ bool Debug::CrashDone(bool die)
#endif
char *help=(char *)DebugAllocMemory(ioBuffer[curType].used+strlen(addInfo)+1);
strcpy(help,ioBuffer[curType].buffer+82);
strlcat(help, addInfo, ARRAY_SIZE(help));
strcat(help, addInfo);

// First hit? Then do a stack trace
if (curFrameEntry->hits==1)
Expand Down
Loading