diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2006-05-15 14:50:38 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2006-05-15 14:50:38 +0000 |
commit | b758e50f4c55af4db5d2ed792f388ed6e56f66dc (patch) | |
tree | bf849248697322ca512a1536e29ad5b3253e2efa | |
parent | b247355e2d7aeb89307619b8fbd2e6337a3d6227 (diff) | |
download | gdb-b758e50f4c55af4db5d2ed792f388ed6e56f66dc.zip gdb-b758e50f4c55af4db5d2ed792f388ed6e56f66dc.tar.gz gdb-b758e50f4c55af4db5d2ed792f388ed6e56f66dc.tar.bz2 |
2006-05-15 H.J. Lu <hongjiu.lu@intel.com>
* dwarf.c (display_debug_frames): Don't return on ZERO
terminator.
-rw-r--r-- | binutils/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/dwarf.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 867a84f..5a4fee9 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2006-05-15 H.J. Lu <hongjiu.lu@intel.com> + + * dwarf.c (display_debug_frames): Don't return on ZERO + terminator. + 2006-05-02 Daniel Jacobowitz <dan@codesourcery.com> * doc/Makefile.am (AM_MAKEINFOFLAGS): New. diff --git a/binutils/dwarf.c b/binutils/dwarf.c index c69cab2..56669be 100644 --- a/binutils/dwarf.c +++ b/binutils/dwarf.c @@ -2927,7 +2927,7 @@ display_debug_frames (struct dwarf_section *section, { printf ("\n%08lx ZERO terminator\n\n", (unsigned long)(saved_start - section_start)); - return 1; + continue; } if (length == 0xffffffff) |