+2015-03-03 Alan Modra <amodra@gmail.com>
+
+ [BZ #16512]
+ * scripts/localplt.awk: Strip off symbol version.
+ * NEWS: Mention bug fix.
+
2016-08-26 Florian Weimer <fweimer@redhat.com>
[BZ #20432]
* The following bugs are resolved with this release:
- 17090, 17269, 17620, 17621, 17628, 17905, 17949, 18007, 18032, 18080,
- 18240, 18287, 18508, 18694, 18887, 18985, 19048, 19682.
+ 16512, 17090, 17269, 17620, 17621, 17628, 17905, 17949, 18007, 18032,
+ 18080, 18240, 18287, 18508, 18694, 18887, 18985, 19048, 19682.
* A stack-based buffer overflow was found in libresolv when invoked from
libnss_dns, allowing specially crafted DNS responses to seize control
# Relocations against GNU_IFUNC symbols are not shown as an hexadecimal
# value, but rather as the resolver symbol followed by ().
if ($4 ~ /\(\)/) {
- print whatfile, $5
+ print whatfile, gensub(/@.*/, "", "g", $5)
} else {
symval = strtonum("0x" $4);
if (symval != 0)
- print whatfile, $5
+ print whatfile, gensub(/@.*/, "", "g", $5)
}
}