diff options
Diffstat (limited to 'gdb/ser-unix.c')
-rw-r--r-- | gdb/ser-unix.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/ser-unix.c b/gdb/ser-unix.c index 1b2efd8..266453c 100644 --- a/gdb/ser-unix.c +++ b/gdb/ser-unix.c @@ -306,6 +306,7 @@ hardwire_drain_output (struct serial *scb) to be discarded. */ { struct hardwire_ttystate state; + if (get_tty_state (scb, &state)) { return (-1); @@ -888,6 +889,7 @@ void _initialize_ser_hardwire (void) { struct serial_ops *ops = XMALLOC (struct serial_ops); + memset (ops, 0, sizeof (struct serial_ops)); ops->name = "hardwire"; ops->next = 0; |