X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Fstrutil.c;h=73c9fc6af4a85459b75c659ede5421c2ac3f6688;hb=4237ab9e5ba85153b632b43b7eb2411530e11df8;hp=28f202c9801547e2716d332cf56f7f67c75396c2;hpb=42408643f9dcb80d1744aaa4d08e0170594daad1;p=libsigrok.git diff --git a/src/strutil.c b/src/strutil.c index 28f202c9..73c9fc6a 100644 --- a/src/strutil.c +++ b/src/strutil.c @@ -33,7 +33,6 @@ #include #include #include -#include #include #include "libsigrok-internal.h" @@ -614,24 +613,32 @@ SR_API int sr_parse_rational(const char *str, struct sr_rational *ret) int64_t denominator = 1; int32_t fractional_len = 0; int32_t exponent = 0; - bool is_negative = false; + gboolean is_negative = FALSE; + gboolean no_integer, no_fractional; + + while (isspace(*str)) + str++; errno = 0; integral = g_ascii_strtoll(str, &endptr, 10); - if (str == endptr && (str[0] == '-' || str[0] == '+') && str[1] == '.') + if (str == endptr && (str[0] == '-' || str[0] == '+') && str[1] == '.') { endptr += 1; - else if (str == endptr && str[0] == '.') - /* EMPTY */; - else if (errno) + no_integer = TRUE; + } else if (str == endptr && str[0] == '.') { + no_integer = TRUE; + } else if (errno) { return SR_ERR; + } else { + no_integer = FALSE; + } if (integral < 0 || str[0] == '-') - is_negative = true; + is_negative = TRUE; errno = 0; if (*endptr == '.') { - bool is_exp, is_eos; + gboolean is_exp, is_eos; const char *start = endptr + 1; fractional = g_ascii_strtoll(start, &endptr, 10); is_exp = *endptr == 'E' || *endptr == 'e'; @@ -642,6 +649,9 @@ SR_API int sr_parse_rational(const char *str, struct sr_rational *ret) } if (errno) return SR_ERR; + no_fractional = endptr == start; + if (no_integer && no_fractional) + return SR_ERR; fractional_len = endptr - start; }