2011-02-27 Michael Snyder <msnyder@vmware.com>

* symtab.c (rbreak_command): Move variable 'file_name' to
	outer scope.
This commit is contained in:
Michael Snyder 2011-02-27 22:11:06 +00:00
parent 69d371133c
commit 9c1e305a59
2 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,8 @@
2011-02-27 Michael Snyder <msnyder@vmware.com>
* symtab.c (rbreak_command): Move variable 'file_name' to
outer scope.
* d-valprint.c (dynamic_array_type): Avoid shadowing a function
param with a local variable of the same name.

View File

@ -3403,7 +3403,7 @@ rbreak_command (char *regexp, int from_tty)
struct cleanup *old_chain;
char *string = NULL;
int len = 0;
char **files = NULL;
char **files = NULL, *file_name;
int nfiles = 0;
if (regexp)
@ -3413,7 +3413,6 @@ rbreak_command (char *regexp, int from_tty)
if (colon && *(colon + 1) != ':')
{
int colon_index;
char * file_name;
colon_index = colon - regexp;
file_name = alloca (colon_index + 1);