summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorKarel Zak2019-05-14 16:37:35 +0200
committerKarel Zak2019-05-14 16:37:35 +0200
commitdcf6f5b3d9417274322ad79fc509c93754195f1a (patch)
tree5c766d232193fbb9d20cb60b09b920070590ed10 /lib
parentlib/canonicalize: verify DM paths [coverity scan] (diff)
downloadkernel-qcow2-util-linux-dcf6f5b3d9417274322ad79fc509c93754195f1a.tar.gz
kernel-qcow2-util-linux-dcf6f5b3d9417274322ad79fc509c93754195f1a.tar.xz
kernel-qcow2-util-linux-dcf6f5b3d9417274322ad79fc509c93754195f1a.zip
lib/colors: keep static analyzer happy [coverity scan]
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/colors.c6
1 files changed, 4 insertions, 2 deletions
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;
}