diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2009-05-23 16:17:18 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2009-05-23 16:17:18 +0000 |
commit | 1b36a34b7a279d934ee183f3d97562d49b612cc5 (patch) | |
tree | 3a9bd202bdab9e50804c1096fb173ced0b5db2d9 /gdb/buildsym.c | |
parent | 61d8f2758f5881aa0138e31b45105515e98eb715 (diff) | |
download | gdb-1b36a34b7a279d934ee183f3d97562d49b612cc5.zip gdb-1b36a34b7a279d934ee183f3d97562d49b612cc5.tar.gz gdb-1b36a34b7a279d934ee183f3d97562d49b612cc5.tar.bz2 |
gdb/
Replace the savestring calls by xstrdup calls where possible.
* breakpoint.c (condition_command, set_raw_breakpoint)
(create_catchpoint, update_breakpoint_locations): Replace the
savestring calls by xstrdup calls where possible.
* buildsym.c (start_subfile, patch_subfile_names, record_debugformat)
(record_producer): Likewise.
* coffread.c (coff_start_symtab, complete_symtab): Likewise.
* corefile.c (set_gnutarget): Likewise.
* dbxread.c (add_new_header_file): Likewise.
* demangle.c (set_demangling_command, set_demangling_style): Likewise.
* event-top.c (push_prompt, pop_prompt, command_line_handler)
(set_async_prompt): Likewise.
* infcmd.c (set_inferior_io_terminal, attach_command_post_wait):
Likewise.
* language.c (set_language_command, _initialize_language): Likewise.
* linespec.c (decode_line_2): Likewise.
* rs6000-nat.c (add_vmap): Likewise.
* top.c (set_prompt, init_history, init_main): Likewise.
* tracepoint.c (stringify_collection_list): Likewise.
* varobj.c (varobj_create): Remove variable expr_len. Replace the
savestring calls by xstrdup calls where possible.
(value_of_root, c_name_of_variable, c_describe_child): Replace the
savestring calls by xstrdup calls where possible.
* xcoffread.c (complete_symtab): Likewise.
* cli/cli-script.c (build_command_line, define_command): Likewise.
* cli/cli-setshow.c (do_setshow_command): Likewise.
Diffstat (limited to 'gdb/buildsym.c')
-rw-r--r-- | gdb/buildsym.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/gdb/buildsym.c b/gdb/buildsym.c index 6de817f..e0d8f0d 100644 --- a/gdb/buildsym.c +++ b/gdb/buildsym.c @@ -561,9 +561,8 @@ start_subfile (char *name, char *dirname) current_subfile = subfile; /* Save its name and compilation directory name */ - subfile->name = (name == NULL) ? NULL : savestring (name, strlen (name)); - subfile->dirname = - (dirname == NULL) ? NULL : savestring (dirname, strlen (dirname)); + subfile->name = (name == NULL) ? NULL : xstrdup (name); + subfile->dirname = (dirname == NULL) ? NULL : xstrdup (dirname); /* Initialize line-number recording for this subfile. */ subfile->line_vector = NULL; @@ -638,7 +637,7 @@ patch_subfile_names (struct subfile *subfile, char *name) && subfile->name[strlen (subfile->name) - 1] == '/') { subfile->dirname = subfile->name; - subfile->name = savestring (name, strlen (name)); + subfile->name = xstrdup (name); last_source_file = name; /* Default the source language to whatever can be deduced from @@ -1260,7 +1259,7 @@ hashname (char *name) void record_debugformat (char *format) { - current_subfile->debugformat = savestring (format, strlen (format)); + current_subfile->debugformat = xstrdup (format); } void @@ -1271,7 +1270,7 @@ record_producer (const char *producer) if (producer == NULL) return; - current_subfile->producer = savestring (producer, strlen (producer)); + current_subfile->producer = xstrdup (producer); } /* Merge the first symbol list SRCLIST into the second symbol list |