From: Eric Christopher Date: Wed, 8 Nov 2017 22:03:55 +0000 (-0800) Subject: Apply: X-Git-Tag: users/ARM/embedded-binutils-master-2017q4~287 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=08228b11557016f6f12d537ebff5f169fdf9bc6c;p=thirdparty%2Fbinutils-gdb.git Apply: 2017-11-08 Kyle Butt * object.cc (do_find_special_sections): Fix a thinko with memmem return values and check for != NULL rather than == 0. --- diff --git a/gold/ChangeLog b/gold/ChangeLog index 2d0ae45dc82..737e3af18ad 100644 --- a/gold/ChangeLog +++ b/gold/ChangeLog @@ -1,3 +1,8 @@ +2017-11-08 Kyle Butt + + * object.cc (do_find_special_sections): Fix a thinko with memmem return + values and check for != NULL rather than == 0. + 2017-11-07 Alan Modra * system.h (textdomain, bindtextdomain): Use safer "do nothing". diff --git a/gold/object.cc b/gold/object.cc index 4110686ff31..013565103c5 100644 --- a/gold/object.cc +++ b/gold/object.cc @@ -816,9 +816,9 @@ Sized_relobj_file::do_find_special_sections( return (this->has_eh_frame_ || (!parameters->options().relocatable() && parameters->options().gdb_index() - && (memmem(names, sd->section_names_size, "debug_info", 11) == 0 + && (memmem(names, sd->section_names_size, "debug_info", 11) != NULL || memmem(names, sd->section_names_size, - "debug_types", 12) == 0))); + "debug_types", 12) != NULL))); } // Read the sections and symbols from an object file.