2001-02-19 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
From Andrew Cagney <cagney@b1.cygnus.com>: * symfile.c (add_symbol_file_command): Always initialize my_cleanup using a NULL cleanup.
This commit is contained in:
parent
fa58ee1196
commit
3017564ad2
@ -1,3 +1,9 @@
|
|||||||
|
2001-02-19 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
|
||||||
|
|
||||||
|
From Andrew Cagney <cagney@b1.cygnus.com>:
|
||||||
|
* symfile.c (add_symbol_file_command): Always initialize
|
||||||
|
my_cleanup using a NULL cleanup.
|
||||||
|
|
||||||
2001-02-19 Eli Zaretskii <eliz@is.elta.co.il>
|
2001-02-19 Eli Zaretskii <eliz@is.elta.co.il>
|
||||||
|
|
||||||
* demangle.c (demangling_style_names): New variable.
|
* demangle.c (demangling_style_names): New variable.
|
||||||
|
@ -1420,7 +1420,7 @@ add_symbol_file_command (char *args, int from_tty)
|
|||||||
} sect_opts[SECT_OFF_MAX];
|
} sect_opts[SECT_OFF_MAX];
|
||||||
|
|
||||||
struct section_addr_info section_addrs;
|
struct section_addr_info section_addrs;
|
||||||
struct cleanup *my_cleanups;
|
struct cleanup *my_cleanups = make_cleanup (null_cleanup, NULL);
|
||||||
|
|
||||||
dont_repeat ();
|
dont_repeat ();
|
||||||
|
|
||||||
@ -1456,7 +1456,7 @@ add_symbol_file_command (char *args, int from_tty)
|
|||||||
{
|
{
|
||||||
/* The first argument is the file name. */
|
/* The first argument is the file name. */
|
||||||
filename = tilde_expand (arg);
|
filename = tilde_expand (arg);
|
||||||
my_cleanups = make_cleanup (xfree, filename);
|
make_cleanup (xfree, filename);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
if (argcnt == 1)
|
if (argcnt == 1)
|
||||||
|
Loading…
Reference in New Issue
Block a user