X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f0756afed903e7dba726bb4789bf83b760dba31a..60b1fda237b5544162b8df38ca89cdef23e3f6b1:/src/common/appbase.cpp diff --git a/src/common/appbase.cpp b/src/common/appbase.cpp index ef32e59f1d..0f2c5edd34 100644 --- a/src/common/appbase.cpp +++ b/src/common/appbase.cpp @@ -772,7 +772,17 @@ void ShowAssertDialog(const wxChar *szFile, StackDump dump; dump.Walk(5); // don't show OnAssert() call itself - const wxString& stackTrace = dump.GetStackTrace(); + wxString stackTrace = dump.GetStackTrace(); + + const int maxLines = 10; + // Don't show more than maxLines or we could get an enormous dialog + int count = stackTrace.Freq(wxT('\n')); + if (count > maxLines) + { + int i; + for (i = 0; i < count - maxLines; i++) + stackTrace = stackTrace.BeforeLast(wxT('\n')); + } if ( !stackTrace.empty() ) { msg << _T("\n\nCall stack:\n")