From 5224fa039966557e869338d2591e7945cdcecb74 Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Thu, 1 Mar 2018 08:21:11 +1030 Subject: [PATCH] correct ft32 reloc range test * elf32-ft32.c (ft32_info_to_howto_rela): Correct range test. --- bfd/ChangeLog | 4 ++++ bfd/elf32-ft32.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 91bc2ef..e2c5789 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +2018-03-01 Alan Modra + + * elf32-ft32.c (ft32_info_to_howto_rela): Correct range test. + 2018-02-28 Alan Modra PR 22887 diff --git a/bfd/elf32-ft32.c b/bfd/elf32-ft32.c index b981a34..7c4e1ae 100644 --- a/bfd/elf32-ft32.c +++ b/bfd/elf32-ft32.c @@ -300,7 +300,7 @@ ft32_info_to_howto_rela (bfd *abfd, unsigned int r_type; r_type = ELF32_R_TYPE (dst->r_info); - if (r_type < (unsigned int) R_FT32_max) + if (r_type >= (unsigned int) R_FT32_max) { /* xgettext:c-format */ _bfd_error_handler (_("%pB: unsupported relocation type %#x"), -- 2.7.4