aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2015-02-13 11:13:20 +0000
committerNick Clifton <nickc@redhat.com>2015-02-13 11:13:20 +0000
commitf641dd969f91a83adf319b269c2411141b0a26a9 (patch)
tree8c6b66dc41406975ccd9fdf7892749a1b1c9df24
parent9f04ac5f92a1efc97b38cb6560fc10146fad64b6 (diff)
Fix mistake in recent code to check for an unterminated leb128 number.
* dwarf.c (read_leb128): Fix test for shift becoming too large.
-rw-r--r--binutils/coffgrok.c7
-rw-r--r--binutils/dwarf.c2
2 files changed, 7 insertions, 2 deletions
diff --git a/binutils/coffgrok.c b/binutils/coffgrok.c
index 5dc9558078..2bbfdc45b4 100644
--- a/binutils/coffgrok.c
+++ b/binutils/coffgrok.c
@@ -668,8 +668,13 @@ do_define (unsigned int i, struct coff_scope *b)
if (!is->init)
{
+ long high = s->where->offset + s->type->size;
+
is->low = s->where->offset;
- is->high = s->where->offset + s->type->size;
+ is->high = high;
+ /* PR 17512: file: 37e7a80d. */
+ if (is->high != high)
+ fatal (_("Out of range type size: %u"), s->type->size);
is->init = 1;
is->parent = s->where->section;
}
diff --git a/binutils/dwarf.c b/binutils/dwarf.c
index dad381f349..936f63438e 100644
--- a/binutils/dwarf.c
+++ b/binutils/dwarf.c
@@ -284,7 +284,7 @@ read_leb128 (unsigned char *data,
/* PR 17512: file: 0ca183b8.
FIXME: Should we signal this error somehow ? */
- if (shift >= sizeof (result))
+ if (shift >= sizeof (result) * 8)
break;
}