mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-06 06:45:56 +08:00
* gdbtypes.c (safe_parse_type): Initialize type to keep gcc happy.
* varobj.c (varobj_set_value): Initialize val,value to keep gcc happy.
This commit is contained in:
@ -1674,7 +1674,7 @@ static struct type *
|
||||
safe_parse_type (struct gdbarch *gdbarch, char *p, int length)
|
||||
{
|
||||
struct ui_file *saved_gdb_stderr;
|
||||
struct type *type;
|
||||
struct type *type = NULL; /* Initialize to keep gcc happy. */
|
||||
volatile struct gdb_exception except;
|
||||
|
||||
/* Suppress error messages. */
|
||||
|
Reference in New Issue
Block a user