We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c7b816 commit 7f4dd52Copy full SHA for 7f4dd52
libraries/GDBStub/src/internal/gdbstub.c
@@ -299,7 +299,7 @@ static void ATTR_GDBFN sendReason() {
299
} else if (gdbstub_savedRegs.reason&0x80) {
300
//We stopped because of an exception. Convert exception code to a signal number and send it.
301
i=gdbstub_savedRegs.reason&0x7f;
302
- if (i<sizeof(exceptionSignal)) return gdbPacketHex(exceptionSignal[i], 8); else gdbPacketHex(11, 8);
+ if (i<sizeof(exceptionSignal)) gdbPacketHex(exceptionSignal[i], 8); else gdbPacketHex(11, 8);
303
} else {
304
//We stopped because of a debugging exception.
305
gdbPacketHex(5, 8); //sigtrap
0 commit comments