Debugger: Fix uninitialized variables

This commit is contained in:
Jeffrey Pfau 2015-04-22 20:42:32 -07:00
parent 242dc5067b
commit 86bf02b9d5
1 changed files with 2 additions and 0 deletions

View File

@ -464,6 +464,8 @@ void GDBStubCreate(struct GDBStub* stub) {
stub->d.custom = _gdbStubPoll; stub->d.custom = _gdbStubPoll;
stub->d.log = 0; stub->d.log = 0;
stub->untilPoll = GDB_STUB_INTERVAL; stub->untilPoll = GDB_STUB_INTERVAL;
stub->lineAck = GDB_ACK_PENDING;
stub->shouldBlock = false;
} }
bool GDBStubListen(struct GDBStub* stub, int port, const struct Address* bindAddress) { bool GDBStubListen(struct GDBStub* stub, int port, const struct Address* bindAddress) {