From: Fernando Nasser Date: Sat, 12 May 2001 21:05:59 +0000 (+0000) Subject: 2001-05-12 Fernando Nasser X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=67dd5ca6911d587bbb65f527c81423d6e535ac5f;p=deliverable%2Fbinutils-gdb.git 2001-05-12 Fernando Nasser * remote-e7000.c (e7000_open): Check for bad baud rate. * remote-st.c (st2000_open): Ditto. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 55cc069097..022495de0f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2001-05-12 Fernando Nasser + + * remote-e7000.c (e7000_open): Check for bad baud rate. + * remote-st.c (st2000_open): Ditto. + 2001-05-11 Jim Blandy * thread.c (do_captured_list_thread_ids): Use ui_out_tuple_begin diff --git a/gdb/remote-e7000.c b/gdb/remote-e7000.c index 4e7c97c868..34ac3456d0 100644 --- a/gdb/remote-e7000.c +++ b/gdb/remote-e7000.c @@ -667,7 +667,11 @@ e7000_open (char *args, int from_tty) if (!e7000_desc) perror_with_name (dev_name); - SERIAL_SETBAUDRATE (e7000_desc, baudrate); + if (SERIAL_SETBAUDRATE (e7000_desc, baudrate)) + { + SERIAL_CLOSE (dev_name); + perror_with_name (dev_name); + } SERIAL_RAW (e7000_desc); #ifdef GDB_TARGET_IS_H8300 diff --git a/gdb/remote-st.c b/gdb/remote-st.c index 868c08ed48..55e1392642 100644 --- a/gdb/remote-st.c +++ b/gdb/remote-st.c @@ -285,7 +285,11 @@ or target st2000 \n"); if (!st2000_desc) perror_with_name (dev_name); - SERIAL_SETBAUDRATE (st2000_desc, baudrate); + if (SERIAL_SETBAUDRATE (st2000_desc, baudrate)) + { + SERIAL_CLOSE (dev_name); + perror_with_name (dev_name); + } SERIAL_RAW (st2000_desc);