From f6abbb00f0b29a514955b864cd86dc1438728b88 Mon Sep 17 00:00:00 2001 From: Jan Rybar Date: Wed, 15 Jun 2016 14:12:59 +0200 Subject: [PATCH] - Fixing incorrect memory usage assessment due to skipping vmflags parsing - Resolves Red Hat Bugzilla #1262864, affecting upstream --- pmap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pmap.c b/pmap.c index b2851c5e..61aca2c3 100644 --- a/pmap.c +++ b/pmap.c @@ -629,9 +629,9 @@ static int one_proc(proc_t * p) diff = 0; continue; } - /* Other keys */ - continue; } + /* Other keys or not a key-value pair */ + continue; } sscanf(mapbuf, "%" KLF "x-%" KLF "x %31s %llx %x:%x %llu", &start, &end, perms, &file_offset, &dev_major, &dev_minor, -- 2.40.0