Don’t process the stop reply packet as a generic signal if we already figured out what it was from other data in the packet.

llvm-svn: 202066
This commit is contained in:
Jim Ingham 2014-02-24 19:49:46 +00:00
parent ca49851833
commit 40083a4326
1 changed files with 1 additions and 1 deletions

View File

@ -1735,7 +1735,7 @@ ProcessGDBRemote::SetThreadStopInfo (StringExtractor& stop_packet)
}
}
if (signo && did_exec == false)
if (!handled && signo && did_exec == false)
{
if (signo == SIGTRAP)
{