mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-17 07:53:51 +08:00
Fix compile time warning messages about variables being used before they are initialised.
PR 18313 bin * ieee.c (ieee_read_cxx_class): Initialise the varargs variable. * readelf.c (uncompress_section_contents): Zero initialise the zstream structure. bfd * compress.c (decompress_contents): Zero initialse the z_stream structure.
This commit is contained in:
@ -2954,7 +2954,7 @@ ieee_read_cxx_class (struct ieee_info *info, const bfd_byte **pp,
|
||||
{
|
||||
debug_type return_type;
|
||||
const debug_type *arg_types;
|
||||
bfd_boolean varargs;
|
||||
bfd_boolean varargs = FALSE;
|
||||
|
||||
if (debug_get_type_kind (dhandle, pv->type)
|
||||
!= DEBUG_KIND_FUNCTION)
|
||||
|
Reference in New Issue
Block a user