From aedc0e64b9021df03c4fe356c69ead7eaa5efae9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Pawe=C5=82=20Sikora?= Date: Thu, 28 Sep 2006 13:16:16 +0000 Subject: [PATCH] - outdated. Changed files: binutils-pr3262.patch -> 1.2 --- binutils-pr3262.patch | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 binutils-pr3262.patch diff --git a/binutils-pr3262.patch b/binutils-pr3262.patch deleted file mode 100644 index 606aeee..0000000 --- a/binutils-pr3262.patch +++ /dev/null @@ -1,27 +0,0 @@ -2006-09-26 H.J. Lu - - 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; - -- 2.44.0