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/event-top.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/event-top.c')
-rw-r--r-- | gdb/event-top.c | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/gdb/event-top.c b/gdb/event-top.c index 31ebd4e..790cebf 100644 --- a/gdb/event-top.c +++ b/gdb/event-top.c @@ -372,22 +372,22 @@ change_annotation_level (void) /* Pushes a new prompt on the prompt stack. Each prompt has three parts: prefix, prompt, suffix. Usually prefix and suffix are empty strings, except when the annotation level is 2. Memory is allocated - within savestring for the new prompt. */ + within xstrdup for the new prompt. */ void push_prompt (char *prefix, char *prompt, char *suffix) { the_prompts.top++; - PREFIX (0) = savestring (prefix, strlen (prefix)); + PREFIX (0) = xstrdup (prefix); /* Note that this function is used by the set annotate 2 command. This is why we take care of saving the old prompt in case a new one is not specified. */ if (prompt) - PROMPT (0) = savestring (prompt, strlen (prompt)); + PROMPT (0) = xstrdup (prompt); else - PROMPT (0) = savestring (PROMPT (-1), strlen (PROMPT (-1))); + PROMPT (0) = xstrdup (PROMPT (-1)); - SUFFIX (0) = savestring (suffix, strlen (suffix)); + SUFFIX (0) = xstrdup (suffix); } /* Pops the top of the prompt stack, and frees the memory allocated for it. */ @@ -404,7 +404,7 @@ pop_prompt (void) if (strcmp (PROMPT (0), PROMPT (-1))) { xfree (PROMPT (-1)); - PROMPT (-1) = savestring (PROMPT (0), strlen (PROMPT (0))); + PROMPT (-1) = xstrdup (PROMPT (0)); } xfree (PREFIX (0)); @@ -624,8 +624,7 @@ command_line_handler (char *rl) { p--; /* Put on top of '\'. */ - readline_input_state.linebuffer = savestring (linebuffer, - strlen (linebuffer)); + readline_input_state.linebuffer = xstrdup (linebuffer); readline_input_state.linebuffer_ptr = p; /* We will not invoke a execute_command if there is more @@ -1063,7 +1062,7 @@ set_async_annotation_level (char *args, int from_tty, struct cmd_list_element *c void set_async_prompt (char *args, int from_tty, struct cmd_list_element *c) { - PROMPT (0) = savestring (new_async_prompt, strlen (new_async_prompt)); + PROMPT (0) = xstrdup (new_async_prompt); } /* Set things up for readline to be invoked via the alternate |