mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-25 01:13:37 +08:00
Initialize *uncompressed_align_pow_p to 0
Initialize *uncompressed_align_pow_p to 0 since *uncompressed_align_pow_p is passed to bfd_is_section_compressed_with_header as uninitialized, PR binutils/23919 * compress.c (bfd_is_section_compressed_with_header): Initialize *uncompressed_align_pow_p to 0.
This commit is contained in:
parent
9fca35fc34
commit
131a5a648d
@ -1,3 +1,9 @@
|
||||
2018-11-27 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
PR binutils/23919
|
||||
* compress.c (bfd_is_section_compressed_with_header): Initialize
|
||||
*uncompressed_align_pow_p to 0.
|
||||
|
||||
2018-11-27 Tamar Christina <tamar.christina@arm.com>
|
||||
|
||||
PR ld/23904
|
||||
|
@ -394,6 +394,8 @@ bfd_is_section_compressed_with_header (bfd *abfd, sec_ptr sec,
|
||||
unsigned int saved = sec->compress_status;
|
||||
bfd_boolean compressed;
|
||||
|
||||
*uncompressed_align_pow_p = 0;
|
||||
|
||||
compression_header_size = bfd_get_compression_header_size (abfd, sec);
|
||||
if (compression_header_size > MAX_COMPRESSION_HEADER_SIZE)
|
||||
abort ();
|
||||
|
Loading…
Reference in New Issue
Block a user