aboutsummaryrefslogtreecommitdiffstats
path: root/src/cg-brilliance.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2016-12-01 14:48:11 +0100
committerMattias Andrée <maandree@kth.se>2016-12-01 14:48:11 +0100
commit306ee610d24a274f7e765898fbd760d274549388 (patch)
tree13ba58600e51a8464ba5748963e892a3a265c13d /src/cg-brilliance.c
parentCheck that the value of -p is proper (diff)
downloadcg-tools-306ee610d24a274f7e765898fbd760d274549388.tar.gz
cg-tools-306ee610d24a274f7e765898fbd760d274549388.tar.bz2
cg-tools-306ee610d24a274f7e765898fbd760d274549388.tar.xz
Fix bugs
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'src/cg-brilliance.c')
-rw-r--r--src/cg-brilliance.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cg-brilliance.c b/src/cg-brilliance.c
index 1ad590d..eab9806 100644
--- a/src/cg-brilliance.c
+++ b/src/cg-brilliance.c
@@ -132,7 +132,7 @@ static int parse_double(double* restrict out, const char* restrict str)
*out = strtod(str, &end);
if (errno || (*out < 0) || isinf(*out) || isnan(*out) || *end)
return -1;
- if (!strchr("0123456789.", *str))
+ if (!*str || !strchr("0123456789.", *str))
return -1;
return 0;
}