diff options
author | Michael Snyder <msnyder@vmware.com> | 2007-08-08 18:34:28 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2007-08-08 18:34:28 +0000 |
commit | 91d2803c325882e58167accad259c6334b57bdcf (patch) | |
tree | 728b7fe991584b21a8ca752c91db0c37e88d8cfc /gdb/top.c | |
parent | ea5bf0a1f9f5ebc127b1982c31a7abb27b36c563 (diff) | |
download | gdb-91d2803c325882e58167accad259c6334b57bdcf.zip gdb-91d2803c325882e58167accad259c6334b57bdcf.tar.gz gdb-91d2803c325882e58167accad259c6334b57bdcf.tar.bz2 |
2007-08-08 Michael Snyder <msnyder@access-company.com>
* top.c (command_line_input): Memory leak.
Diffstat (limited to 'gdb/top.c')
-rw-r--r-- | gdb/top.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1093,8 +1093,8 @@ command_line_input (char *prompt_arg, int repeat, char *annotation_suffix) } strcpy (linebuffer, history_value); p = linebuffer + strlen (linebuffer); - xfree (history_value); } + xfree (history_value); } /* If we just got an empty line, and that is supposed |