diff options
author | Jeff Holcomb <jeffh@redhat.com> | 2001-01-26 19:47:23 +0000 |
---|---|---|
committer | Jeff Holcomb <jeffh@redhat.com> | 2001-01-26 19:47:23 +0000 |
commit | 5b616ba11e5389dc47b9d85a3cbfbdbb54955801 (patch) | |
tree | b9efaef3347e013222c3a8b373607dbef3007a0f /gdb/remote-udi.c | |
parent | b91d87cfc7f7c17338c5100c06424cc1b0b59c28 (diff) | |
download | gdb-5b616ba11e5389dc47b9d85a3cbfbdbb54955801.zip gdb-5b616ba11e5389dc47b9d85a3cbfbdbb54955801.tar.gz gdb-5b616ba11e5389dc47b9d85a3cbfbdbb54955801.tar.bz2 |
2001-01-24 Jeff Holcomb <jeffh@redhat.com>
* remote-udi.c (udi_open): Change strdup to xstrdup.
* thread.c (thread_apply_all_command): Change strdup to xstrdup.
Update copyright message.
* varobj.c (delete_variable_1): Likewise.
* gdb_string.h: Remove declaration of strdup. Update copyright
message.
* config/xm-mpw.h: Likewise.
* config/i386/xm-i386mach.h: Likewise.
* config/m68k/xm-apollo68b.h: Likewise.
* config/m68k/xm-hp300bsd.h: Likewise.
* config/rs6000/xm-rs6000.h: Likewise.
* config/vax/xm-vaxult.h: Remove declaration of strdup.
* config/vax/xm-vaxult2.h: Likewise.
Diffstat (limited to 'gdb/remote-udi.c')
-rw-r--r-- | gdb/remote-udi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/remote-udi.c b/gdb/remote-udi.c index 3987d87..ced664e 100644 --- a/gdb/remote-udi.c +++ b/gdb/remote-udi.c @@ -234,7 +234,7 @@ udi_open (char *name, int from_tty) if (!name) error ("Usage: target udi config_id, where config_id appears in udi_soc file"); - udi_config_id = strdup (strtok (name, " \t")); + udi_config_id = xstrdup (strtok (name, " \t")); if (UDIConnect (udi_config_id, &udi_session_id)) /* FIXME: Should set udi_session_id to -1 here. */ |