.debug sections without contents

Message ID Y+cxtbhMXNT350aU@squeak.grove.modra.org
State Repeat Merge
Headers
Series .debug sections without contents |

Checks

Context Check Description
snail/binutils-gdb-check warning Git am fail log

Commit Message

Alan Modra Feb. 11, 2023, 6:12 a.m. UTC
  * dwarf1.c (_bfd_dwarf1_find_nearest_line): Exclude .debug
	sections without contents.
  

Patch

diff --git a/bfd/dwarf1.c b/bfd/dwarf1.c
index c851f674680..90461004b0a 100644
--- a/bfd/dwarf1.c
+++ b/bfd/dwarf1.c
@@ -510,7 +510,8 @@  _bfd_dwarf1_find_nearest_line (bfd *abfd,
 	return false;
 
       msec = bfd_get_section_by_name (abfd, ".debug");
-      if (! msec)
+      if (! msec
+	  || (msec->flags & SEC_HAS_CONTENTS) == 0)
 	/* No dwarf1 info.  Note that at this point the stash
 	   has been allocated, but contains zeros, this lets
 	   future calls to this function fail quicker.  */