This is the mail archive of the
glibc-cvs@sourceware.org
mailing list for the glibc project.
GNU C Library master sources branch master updated. glibc-2.22-203-g74589f7
- From: ppluzhnikov at sourceware dot org
- To: glibc-cvs at sourceware dot org
- Date: 1 Sep 2015 15:36:00 -0000
- Subject: GNU C Library master sources branch master updated. glibc-2.22-203-g74589f7
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".
The branch, master has been updated
via 74589f738efd72e07f759a4aabd2e32613aaefb8 (commit)
from 04d9a38bafddb92ab79bc0015533689e15848522 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=74589f738efd72e07f759a4aabd2e32613aaefb8
commit 74589f738efd72e07f759a4aabd2e32613aaefb8
Author: Paul Pluzhnikov <ppluzhnikov@google.com>
Date: Tue Sep 1 08:35:38 2015 -0700
Filter out NULL entries.
diff --git a/ChangeLog b/ChangeLog
index f4e3d67..e4ca925 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2015-09-01 Paul Pluzhnikov <ppluzhnikov@google.com>
+
+ * malloc/mtrace.pl: Filter out NULL entries.
+
2015-09-01 Joseph Myers <joseph@codesourcery.com>
* inet/netinet/in.h (IPPROTO_MPLS): New enum value and macro.
diff --git a/malloc/mtrace.pl b/malloc/mtrace.pl
index 0737890..6227049 100644
--- a/malloc/mtrace.pl
+++ b/malloc/mtrace.pl
@@ -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;
}
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 4 ++++
malloc/mtrace.pl | 2 +-
2 files changed, 5 insertions(+), 1 deletions(-)
hooks/post-receive
--
GNU C Library master sources