From: Denys Vlasenko Date: Wed, 1 Jul 2015 17:07:24 +0000 (+0200) Subject: ps: fix SEGV on narrow screens. closes 8176 X-Git-Tag: 1_24_0~101 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=c9091d8947b6f0e28485eadab11d737e4c910430;p=oweals%2Fbusybox.git ps: fix SEGV on narrow screens. closes 8176 Signed-off-by: Denys Vlasenko --- diff --git a/procps/ps.c b/procps/ps.c index c65fa012a..bde5f9485 100644 --- a/procps/ps.c +++ b/procps/ps.c @@ -654,8 +654,8 @@ int ps_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) OPT_l = (1 << ENABLE_SELINUX) * (1 << ENABLE_FEATURE_SHOW_THREADS) * ENABLE_FEATURE_PS_LONG, }; #if ENABLE_FEATURE_PS_LONG - time_t now = now; - unsigned long uptime; + time_t now = now; /* for compiler */ + unsigned long uptime = uptime; #endif /* If we support any options, parse argv */ #if ENABLE_SELINUX || ENABLE_FEATURE_SHOW_THREADS || ENABLE_FEATURE_PS_WIDE || ENABLE_FEATURE_PS_LONG @@ -786,9 +786,11 @@ int ps_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) { int sz = terminal_width - len; - char buf[sz + 1]; - read_cmdline(buf, sz, p->pid, p->comm); - puts(buf); + if (sz >= 0) { + char buf[sz + 1]; + read_cmdline(buf, sz, p->pid, p->comm); + puts(buf); + } } } if (ENABLE_FEATURE_CLEAN_UP)