From 7e9a9af14fef3ad555a287a367165e4a66b8482d Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Tue, 15 May 2012 11:58:20 +0200 Subject: include/ttyutils: more robust get_terminal_width() Signed-off-by: Karel Zak --- include/ttyutils.h | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'include/ttyutils.h') diff --git a/include/ttyutils.h b/include/ttyutils.h index 15809e85a..3c40d72a4 100644 --- a/include/ttyutils.h +++ b/include/ttyutils.h @@ -3,6 +3,7 @@ #include #include +#include #ifdef HAVE_SYS_IOCTL_H #include #endif @@ -97,8 +98,17 @@ static inline int get_terminal_width(void) return w_win.ws_col; #endif cp = getenv("COLUMNS"); - if (cp) - return strtol(cp, NULL, 10); + if (cp) { + char *end = NULL; + long c; + + errno = 0; + c = strtol(cp, &end, 10); + + if (errno == 0 && end && *end == '\0' && end > cp && + c > 0 && c <= INT_MAX) + return c; + } return 0; } -- cgit v1.2.3-55-g7522