]> git.pld-linux.org Git - packages/binutils.git/blame - binutils-build-id.patch
- x32 rebuild
[packages/binutils.git] / binutils-build-id.patch
CommitLineData
3bc4b8d1
JB
1--- binutils-2.23.51.0.5/bfd/compress.c.orig 2012-11-12 17:45:23.000000000 +0100
2+++ binutils-2.23.51.0.5/bfd/compress.c 2012-11-13 17:20:33.925842054 +0100
3@@ -178,7 +178,7 @@ bfd_get_full_section_contents (bfd *abfd
08d99624
AM
4 case COMPRESS_SECTION_NONE:
5 if (p == NULL)
6 {
7- p = (bfd_byte *) bfd_malloc (sz);
8+ p = (bfd_byte *) bfd_zmalloc (sz);
9 if (p == NULL)
10 return FALSE;
11 }
3bc4b8d1 12@@ -218,7 +218,7 @@ bfd_get_full_section_contents (bfd *abfd
08d99624
AM
13 goto fail_compressed;
14
3bc4b8d1
JB
15 if (p == NULL)
16- p = (bfd_byte *) bfd_malloc (sz);
17+ p = (bfd_byte *) bfd_zmalloc (sz);
18 if (p == NULL)
08d99624
AM
19 goto fail_compressed;
20
This page took 0.055225 seconds and 4 git commands to generate.