* nlmcode.h (nlm_get_reloc_upper_bound): Test return value
authorFred Fish <fnf@specifix.com>
Thu, 5 Aug 1993 17:22:58 +0000 (17:22 +0000)
committerFred Fish <fnf@specifix.com>
Thu, 5 Aug 1993 17:22:58 +0000 (17:22 +0000)
of nlm_slurp_symbol_table as boolean, not pointer.
* nlmcode.h (nlm_canonicalize_reloc):  Test return value
of nlm_slurp_reloc_fixups as boolean, not pointer.

bfd/ChangeLog
bfd/nlmcode.h

index b97b94734af60077d69fcd47403d68f2c9e508de..74b03ded7c65098618274945a897421f5618fcb5 100644 (file)
@@ -1,3 +1,10 @@
+Thu Aug  5 10:07:43 1993  Fred Fish  (fnf@cygnus.com)
+
+       * nlmcode.h (nlm_get_reloc_upper_bound):  Test return value
+       of nlm_slurp_symbol_table as boolean, not pointer.
+       * nlmcode.h (nlm_canonicalize_reloc):  Test return value
+       of nlm_slurp_reloc_fixups as boolean, not pointer.
+
 Wed Aug  4 16:22:55 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
 
        * config/go32.mh: remove HDEFINES; since __MSDOS__ and __GO32__
index 43ea0194d4bc6cb372d5e0bfe84d3833b88c3c36..31c5decb30bc7c7ba3eba05971aa7db3fc16cd1a 100644 (file)
@@ -1245,7 +1245,7 @@ nlm_get_reloc_upper_bound (abfd, sec)
   syms = nlm_get_symbols (abfd);
   if (syms == NULL)
     {
-      if (nlm_slurp_symbol_table (abfd) == NULL)
+      if (nlm_slurp_symbol_table (abfd) == false)
        return 0;
       syms = nlm_get_symbols (abfd);
     }
@@ -1280,7 +1280,7 @@ nlm_canonicalize_reloc (abfd, sec, relptr, symbols)
   rels = nlm_relocation_fixups (abfd);
   if (rels == NULL)
     {
-      if (nlm_slurp_reloc_fixups (abfd) == NULL)
+      if (nlm_slurp_reloc_fixups (abfd) == false)
        return 0;
       rels = nlm_relocation_fixups (abfd);
       if (rels == NULL)
This page took 0.032871 seconds and 4 git commands to generate.