aboutsummaryrefslogtreecommitdiffstats
path: root/package/libs/elfutils/patches/004-maybe-uninitialized.patch
diff options
context:
space:
mode:
authorLuiz Angelo Daros de Luca <luizluca@gmail.com>2017-05-05 20:05:56 -0300
committerJohn Crispin <john@phrozen.org>2017-05-18 07:59:56 +0200
commitccc54b29352a7d30762b84761414aa1798ce1183 (patch)
tree9a618d31503c170af5128acd92f78598071977bd /package/libs/elfutils/patches/004-maybe-uninitialized.patch
parente00cc98045ac204d127d98dc882232b6982df359 (diff)
downloadupstream-ccc54b29352a7d30762b84761414aa1798ce1183.tar.gz
upstream-ccc54b29352a7d30762b84761414aa1798ce1183.tar.bz2
upstream-ccc54b29352a7d30762b84761414aa1798ce1183.zip
elfutils: bump to 0.169
Removed patches (now upstream): - 004-maybe-uninitialized.patch - 007-fix_TEMP_FAILURE_RETRY.patch Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
Diffstat (limited to 'package/libs/elfutils/patches/004-maybe-uninitialized.patch')
-rw-r--r--package/libs/elfutils/patches/004-maybe-uninitialized.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/package/libs/elfutils/patches/004-maybe-uninitialized.patch b/package/libs/elfutils/patches/004-maybe-uninitialized.patch
deleted file mode 100644
index d0ce85cc86..0000000000
--- a/package/libs/elfutils/patches/004-maybe-uninitialized.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/libelf/elf_getarsym.c
-+++ b/libelf/elf_getarsym.c
-@@ -167,7 +167,7 @@ elf_getarsym (Elf *elf, size_t *ptr)
-
- /* We have an archive. The first word in there is the number of
- entries in the table. */
-- uint64_t n;
-+ uint64_t n = 0;
- size_t off = elf->start_offset + SARMAG + sizeof (struct ar_hdr);
- if (read_number_entries (&n, elf, &off, index64_p) < 0)
- {