mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-06 06:45:56 +08:00
fix varobj.c
c_value_of_root is missing a call to do_cleanups at one return. This fixes the problem by removing that return and letting control fall through. * varobj.c (c_value_of_root): Call do_cleanups along all return paths.
This commit is contained in:
@ -3474,13 +3474,11 @@ c_value_of_root (struct varobj **var_handle)
|
||||
{
|
||||
new_val = evaluate_expression (var->root->exp);
|
||||
}
|
||||
|
||||
return new_val;
|
||||
}
|
||||
|
||||
do_cleanups (back_to);
|
||||
|
||||
return NULL;
|
||||
return new_val;
|
||||
}
|
||||
|
||||
static struct value *
|
||||
|
Reference in New Issue
Block a user