]> git.pld-linux.org Git - packages/binutils.git/commitdiff
- outdated.
authorPaweł Sikora <pluto@pld-linux.org>
Thu, 28 Sep 2006 13:16:16 +0000 (13:16 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    binutils-pr3262.patch -> 1.2

binutils-pr3262.patch [deleted file]

diff --git a/binutils-pr3262.patch b/binutils-pr3262.patch
deleted file mode 100644 (file)
index 606aeee..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-2006-09-26  H.J. Lu  <hongjiu.lu@intel.com>
-
-       PR binutils/3262
-       * elf.c (rewrite_elf_program_header): Use bfd_zalloc instead of
-       bfd_alloc to allocate segment map.
-       (copy_elf_program_header): Likewise.
-
---- bfd/elf.c.zero     2006-09-24 10:26:59.000000000 -0700
-+++ bfd/elf.c  2006-09-26 12:02:35.000000000 -0700
-@@ -5401,7 +5401,7 @@ rewrite_elf_program_header (bfd *ibfd, b
-        all of the sections we have selected.  */
-       amt = sizeof (struct elf_segment_map);
-       amt += ((bfd_size_type) section_count - 1) * sizeof (asection *);
--      map = bfd_alloc (obfd, amt);
-+      map = bfd_zalloc (obfd, amt);
-       if (map == NULL)
-       return FALSE;
-@@ -5796,7 +5796,7 @@ copy_elf_program_header (bfd *ibfd, bfd 
-       amt = sizeof (struct elf_segment_map);
-       if (section_count != 0)
-       amt += ((bfd_size_type) section_count - 1) * sizeof (asection *);
--      map = bfd_alloc (obfd, amt);
-+      map = bfd_zalloc (obfd, amt);
-       if (map == NULL)
-       return FALSE;
This page took 0.041786 seconds and 4 git commands to generate.