diff options
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/infcall.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index a2bc9a1..3a53ad2 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2011-03-29 Andreas Tobler <andreast-list@fgznet.ch> + + Fix false GCC warning. + * infcall.c (find_function_addr): Initialize funaddr. + 2011-03-29 Pierre Muller <muller@ics.u-strasbg.fr> Fix mingw compilation with --enable-targets=all. diff --git a/gdb/infcall.c b/gdb/infcall.c index ca23704..3f9c871 100644 --- a/gdb/infcall.c +++ b/gdb/infcall.c @@ -252,7 +252,8 @@ find_function_addr (struct value *function, struct type **retval_type) struct type *ftype = check_typedef (value_type (function)); struct gdbarch *gdbarch = get_type_arch (ftype); struct type *value_type = NULL; - CORE_ADDR funaddr; + /* Initialize it just to avoid a GCC false warning. */ + CORE_ADDR funaddr = 0; /* If it's a member function, just look at the function part of it. */ |