From 15c9ef15d37485e5a3ee4a41f507e2e09cda73e8 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Sun, 3 Aug 2003 12:06:14 +0000 Subject: [PATCH] Don't emit () if there is no file name, not if there is no Symbol. --- stepmania/src/archutils/Unix/CrashHandlerChild.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/archutils/Unix/CrashHandlerChild.cpp b/stepmania/src/archutils/Unix/CrashHandlerChild.cpp index 1e84753bae..9cf767be09 100644 --- a/stepmania/src/archutils/Unix/CrashHandlerChild.cpp +++ b/stepmania/src/archutils/Unix/CrashHandlerChild.cpp @@ -61,7 +61,7 @@ void BacktraceNames::Demangle() { } CString BacktraceNames::Format() const { CString ShortenedPath = File; - if( Symbol != "" ) + if( ShortenedPath != "" ) { /* We have some sort of symbol name, so abbreviate or elide the module name. */ if( ShortenedPath == g_argv[0] )