1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-08 17:42:12 +03:00

Filter out NULL entries.

This commit is contained in:
Paul Pluzhnikov
2015-09-01 08:35:38 -07:00
parent 04d9a38baf
commit 74589f738e
2 changed files with 5 additions and 1 deletions

View File

@@ -167,7 +167,7 @@ while (<DATA>) {
printf ("+ %#0@XXX@x Alloc %d duplicate: %s %s\n",
hex($allocaddr), $nr, &location($addrwas{$allocaddr}),
$where);
} else {
} elsif ($allocaddr =~ /^0x/) {
$allocated{$allocaddr}=$howmuch;
$addrwas{$allocaddr}=$where;
}