diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-01-31 01:24:03 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-01-31 01:24:03 +0000 |
commit | 4fcf66da885273eeeea8e14b771d0e3ea20799d9 (patch) | |
tree | 54c8a3ebd35bd426e7f39acd89ac000930cc3a39 /gdb/serial.c | |
parent | e191e0abe5e90c81f39b0a428de8e4e44184161f (diff) | |
download | gdb-4fcf66da885273eeeea8e14b771d0e3ea20799d9.zip gdb-4fcf66da885273eeeea8e14b771d0e3ea20799d9.tar.gz gdb-4fcf66da885273eeeea8e14b771d0e3ea20799d9.tar.bz2 |
Replace strsave() with xstrdup().
Diffstat (limited to 'gdb/serial.c')
-rw-r--r-- | gdb/serial.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gdb/serial.c b/gdb/serial.c index 1d25adf..0f48947 100644 --- a/gdb/serial.c +++ b/gdb/serial.c @@ -1,5 +1,7 @@ /* Generic serial interface routines - Copyright 1992, 1993, 1996, 1997, 1999, 2000 Free Software Foundation, Inc. + + Copyright 1992, 1993, 1996, 1997, 1999, 2000, 2001 Free Software + Foundation, Inc. This file is part of GDB. @@ -213,7 +215,7 @@ serial_open (const char *name) return NULL; } - scb->name = strsave (name); + scb->name = xstrdup (name); scb->next = scb_base; scb->refcnt = 1; scb->debug_p = 0; |