public inbox for binutils@sourceware.org
 help / color / mirror / Atom feed
* tidy ppc64_elf_get_synthetic_symtab return value
@ 2005-04-01  2:36 Alan Modra
  0 siblings, 0 replies; only message in thread
From: Alan Modra @ 2005-04-01  2:36 UTC (permalink / raw)
  To: binutils

Allows callers to distinguish an error return from the no symbols case.

	* elf64-ppc.c (ppc64_elf_get_synthetic_symtab): Return -1 on errors
	rather than 0.

Applying mainline and branch.

Index: bfd/elf64-ppc.c
===================================================================
RCS file: /cvs/src/src/bfd/elf64-ppc.c,v
retrieving revision 1.194
diff -u -p -r1.194 elf64-ppc.c
--- bfd/elf64-ppc.c	5 Mar 2005 11:44:14 -0000	1.194
+++ bfd/elf64-ppc.c	1 Apr 2005 02:00:21 -0000
@@ -2687,7 +2687,7 @@ ppc64_elf_get_synthetic_symtab (bfd *abf
 
   syms = bfd_malloc ((symcount + 1) * sizeof (*syms));
   if (syms == NULL)
-    return 0;
+    return -1;
 
   if (!relocatable && static_count != 0 && dyn_count != 0)
     {
@@ -2758,11 +2758,15 @@ ppc64_elf_get_synthetic_symtab (bfd *abf
 
       slurp_relocs = get_elf_backend_data (abfd)->s->slurp_reloc_table;
       relcount = (opd->flags & SEC_RELOC) ? opd->reloc_count : 0;
-
-      if (! relcount
-	  || ! (*slurp_relocs) (abfd, opd, static_syms, FALSE))
+      if (relcount == 0)
 	goto done;
 
+      if (!(*slurp_relocs) (abfd, opd, static_syms, FALSE))
+	{
+	  count = -1;
+	  goto done;
+	}
+
       size = 0;
       for (i = secsymend, r = opd->relocation; i < opdsymend; ++i)
 	{
@@ -2794,7 +2798,7 @@ ppc64_elf_get_synthetic_symtab (bfd *abf
       s = *ret = bfd_malloc (size);
       if (s == NULL)
 	{
-	  count = 0;
+	  count = -1;
 	  goto done;
 	}
 
@@ -2847,6 +2851,7 @@ ppc64_elf_get_synthetic_symtab (bfd *abf
 	    free_contents_and_exit:
 	      free (contents);
 	    }
+	  count = -1;
 	  goto done;
 	}
 
@@ -2866,10 +2871,7 @@ ppc64_elf_get_synthetic_symtab (bfd *abf
 
       s = *ret = bfd_malloc (size);
       if (s == NULL)
-	{
-	  count = 0;
-	  goto free_contents_and_exit;
-	}
+	goto free_contents_and_exit;
 
       names = (char *) (s + count);
 

-- 
Alan Modra
IBM OzLabs - Linux Technology Centre

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2005-04-01  2:36 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-04-01  2:36 tidy ppc64_elf_get_synthetic_symtab return value Alan Modra

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).