]> git.pld-linux.org Git - packages/binutils.git/blob - binutils-build-id.patch
- updated to 2.23.51.0.5
[packages/binutils.git] / binutils-build-id.patch
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
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         }
12 @@ -218,7 +218,7 @@ bfd_get_full_section_contents (bfd *abfd
13         goto fail_compressed;
14  
15        if (p == NULL)
16 -       p = (bfd_byte *) bfd_malloc (sz);
17 +       p = (bfd_byte *) bfd_zmalloc (sz);
18        if (p == NULL)
19         goto fail_compressed;
20  
This page took 0.023518 seconds and 3 git commands to generate.