Skip to content

Commit

Permalink
Fixed: possible crash in GDB when debugger log is enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
Eran Ifrah committed Mar 22, 2017
1 parent aa40c69 commit 9a9b58b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Debugger/debuggergdb.cpp
Expand Up @@ -695,7 +695,7 @@ void DbgGdb::Poke()
if(curline.IsEmpty() == false && !tmpline.StartsWith(wxT(">"))) {
wxString strdebug(wxT("DEBUG>>"));
strdebug << curline;
CL_DEBUG(strdebug);
clDEBUG() << strdebug << clEndl;
m_observer->UpdateAddLine(strdebug);
}
}
Expand Down

0 comments on commit 9a9b58b

Please sign in to comment.