2002-11-06 Jeff Johnston <jjohnstn@redhat.com>

* mi-cmd-var.c (mi_cmd_var_create): Change the function used to
        parse the frame addr from parse_and_eval_address() to
        string_to_core_addr().  This is a fix for PR gdb/494.
This commit is contained in:
Jeff Johnston 2002-11-07 01:43:59 +00:00
parent fe58797755
commit 1bd34ded16
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2002-11-06 Jeff Johnston <jjohnstn@redhat.com>
* mi-cmd-var.c (mi_cmd_var_create): Change the function used to
parse the frame addr from parse_and_eval_address() to
string_to_core_addr(). This is a fix for PR gdb/494.
2002-10-23 Jeff Johnston <jjohnstn@redhat.com>
* mi-cmd-var.c: Change all remaining occurrences of ui_out_tuple_begin

View file

@ -81,7 +81,7 @@ mi_cmd_var_create (char *command, char **argv, int argc)
else
{
var_type = USE_SPECIFIED_FRAME;
frameaddr = parse_and_eval_address (frame);
frameaddr = string_to_core_addr (frame);
}
if (varobjdebug)