Apply:
authorEric Christopher <echristo@gmail.com>
Wed, 8 Nov 2017 22:03:55 +0000 (14:03 -0800)
committerEric Christopher <echristo@gmail.com>
Wed, 8 Nov 2017 22:03:55 +0000 (14:03 -0800)
2017-11-08  Kyle Butt  <iteratee@google.com>

        * object.cc (do_find_special_sections): Fix a thinko with memmem return
        values and check for != NULL rather than == 0.

gold/ChangeLog
gold/object.cc

index 2d0ae45dc824fdae6a85c6374ab527408a4d3ac6..737e3af18ad214fe25f8513a2d65fcccef1eee9a 100644 (file)
@@ -1,3 +1,8 @@
+2017-11-08  Kyle Butt  <iteratee@google.com>
+
+        * 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  <amodra@gmail.com>
 
        * system.h (textdomain, bindtextdomain): Use safer "do nothing".
index 4110686ff3146b6b655faee144cc486a159388e6..013565103c577c16e4a8c137f9672e4f58023c19 100644 (file)
@@ -816,9 +816,9 @@ Sized_relobj_file<size, big_endian>::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.
This page took 0.02709 seconds and 4 git commands to generate.