mirror of https://github.com/mgba-emu/mgba.git
Debugger: Fix uninitialized variables
This commit is contained in:
parent
242dc5067b
commit
86bf02b9d5
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue