Re: objdump read_section_stabs
authorAlan Modra <amodra@gmail.com>
Tue, 21 Feb 2023 22:34:57 +0000 (09:04 +1030)
committerAlan Modra <amodra@gmail.com>
Tue, 21 Feb 2023 22:48:25 +0000 (09:18 +1030)
Commit f9c36cc99518 changed (and renamed) read_section_stabs with one
difference in overall behaviour.  Previously read_section_stabs would
return a NULL for an empty section, which was then treated the same as
a missing section.  Now an empty section is recognized and dumped.
This leads to NULL stabp and stabs_end in print_section_stabs.  Since
stabs_end - STABSIZE is then a pointer to a very large address, the
test "stabp < stabs_end - STABSIZE" succeeds.

* objdump.c (print_section_stabs): Correct STABSIZE comparison.

binutils/objdump.c

index 984c7219a0c77c3d6025c8348ffad5c6aaf3f0b0..40ed6882b453c2705b25ef8aa70d6dc33260bc61 100644 (file)
@@ -4508,7 +4508,7 @@ print_section_stabs (bfd *abfd,
 
      We start the index at -1 because there is a dummy symbol on
      the front of stabs-in-{coff,elf} sections that supplies sizes.  */
-  for (i = -1; stabp <= stabs_end - STABSIZE; stabp += STABSIZE, i++)
+  for (i = -1; (size_t) (stabs_end - stabp) >= STABSIZE; stabp += STABSIZE, i++)
     {
       const char *name;
       unsigned long strx;