Skip to content

Commit

Permalink
Don't quote symbol path in crash
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanW2 committed Nov 8, 2017
1 parent be5a0c9 commit 7b427c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgscrashhandler.cpp
Expand Up @@ -88,7 +88,7 @@ LONG WINAPI QgsCrashHandler::handle( LPEXCEPTION_POINTERS exception )
stream << QString::number( processID ) << endl;
stream << QString::number( threadID ) << endl;
stream << ptrStr << endl;
stream << '"' + symbolPath + '"' << endl;
stream << symbolPath << endl;
stream << arguments.join( " " ) << endl;
stream << reportData.join( "\n" ) << endl;
}
Expand Down

0 comments on commit 7b427c6

Please sign in to comment.