]> granicus.if.org Git - procps-ng/commitdiff
procps-ng : fix pmap uninitialized warnings
authorGilles Espinasse <g.esp@free.fr>
Tue, 26 Mar 2013 10:21:39 +0000 (11:21 +0100)
committerCraig Small <csmall@enc.com.au>
Tue, 26 Mar 2013 10:23:28 +0000 (21:23 +1100)
pmap.c: In function 'one_proc':
pmap.c:529: warning: 'maxw1' may be used uninitialized in this function
pmap.c:529: warning: 'maxw2' may be used uninitialized in this function
pmap.c:529: warning: 'maxw3' may be used uninitialized in this function
pmap.c:529: warning: 'maxw4' may be used uninitialized in this function
pmap.c:529: warning: 'maxw5' may be used uninitialized in this function

Without -d and -x option, that should be doable to trigger the issue but I haven't found how

Signed-off-by: Gilles Espinasse <g.esp@free.fr>
pmap.c

diff --git a/pmap.c b/pmap.c
index 860f757a382c0c19f780f987812ebd86430532ab..09e4e367387990c4d08f6a4510b0caabd8fa2d21 100644 (file)
--- a/pmap.c
+++ b/pmap.c
@@ -525,7 +525,7 @@ static int one_proc(proc_t * p)
        unsigned long long total_rss = 0ull;
        unsigned long long total_private_dirty = 0ull;
        unsigned long long total_shared_dirty = 0ull;
-       int maxw1, maxw2, maxw3, maxw4, maxw5;
+       int maxw1=0, maxw2=0, maxw3=0, maxw4=0, maxw5=0;
 
        /* Overkill, but who knows what is proper? The "w" prog uses
         * the tty width to determine this.