From dcf6f5b3d9417274322ad79fc509c93754195f1a Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Tue, 14 May 2019 16:37:35 +0200 Subject: lib/colors: keep static analyzer happy [coverity scan] Signed-off-by: Karel Zak --- lib/colors.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/colors.c b/lib/colors.c index bea7bd1d7..29f5c8569 100644 --- a/lib/colors.c +++ b/lib/colors.c @@ -424,8 +424,10 @@ static int cn_sequence(const char *str, char **seq) in++; } - assert ((out - *seq) <= len); - *out = '\0'; + if (out) { + assert ((out - *seq) <= len); + *out = '\0'; + } return 0; } -- cgit v1.2.3-55-g7522