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 | be49ed02760f6495574c99ae41995b2ecd7e45ee (patch) | |
tree | 77618f32b91ca0c4533d468d9306dd35aecf39b2 /gdb/varobj.c | |
parent | 05756cce303fb3ffed47b7a8141da17cb9143827 (diff) | |
download | gdb-be49ed02760f6495574c99ae41995b2ecd7e45ee.tar.gz |
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/varobj.c')
-rw-r--r-- | gdb/varobj.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/varobj.c b/gdb/varobj.c index ae024a4cebd..97e2a4e356b 100644 --- a/gdb/varobj.c +++ b/gdb/varobj.c @@ -1,5 +1,5 @@ /* Implementation of the GDB variable objects API. - Copyright 1999, 2000 Free Software Foundation, Inc. + Copyright 1999, 2000, 2001 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -1072,7 +1072,7 @@ delete_variable_1 (struct cpstack **resultp, int *delcountp, struct varobj *var, yet been installed, don't report it, it belongs to the caller... */ if (var->obj_name != NULL) { - cppush (resultp, strdup (var->obj_name)); + cppush (resultp, xstrdup (var->obj_name)); *delcountp = *delcountp + 1; } |