2011-03-01 Michael Snyder <msnyder@vmware.com>

* tracepoint.c (scope_info): Fix mem leak, remove underused
	variable.
This commit is contained in:
Michael Snyder 2011-03-01 22:13:48 +00:00
parent 63360adcb4
commit 21cbba772b
2 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,8 @@
2011-03-01 Michael Snyder <msnyder@vmware.com>
* tracepoint.c (scope_info): Fix mem leak, remove underused
variable.
* python/py-prettyprint.c (apply_val_pretty_printer): Remove
superfluous null check.

View File

@ -2327,7 +2327,7 @@ scope_info (char *args, int from_tty)
struct symbol *sym;
struct minimal_symbol *msym;
struct block *block;
char **canonical, *symname, *save_args = args;
char *symname, *save_args = args;
struct dict_iterator iter;
int j, count = 0;
struct gdbarch *gdbarch;
@ -2337,7 +2337,7 @@ scope_info (char *args, int from_tty)
error (_("requires an argument (function, "
"line or *addr) to define a scope"));
sals = decode_line_1 (&args, 1, NULL, 0, &canonical, NULL);
sals = decode_line_1 (&args, 1, NULL, 0, NULL, NULL);
if (sals.nelts == 0)
return; /* Presumably decode_line_1 has already warned. */