strutil: Correctly parse floating point frequencies in parse_size_string().

parse_size_string() incorrectly parses a real number, e.g. 1.5 kHz ends up
being 1Hz.

This patch fixes parse_size_string() to take the fractional part as well into
account. The fractional part is parsed as an double precision floating point
number while ignoring the locale.
This commit is contained in:
poljar (Damir Jelić) 2014-01-16 02:53:40 +01:00 committed by Bert Vermeulen
parent 0b92c32cb8
commit 580f309948
1 changed files with 9 additions and 1 deletions

View File

@ -422,15 +422,20 @@ SR_API char **sr_parse_triggerstring(const struct sr_dev_inst *sdi,
SR_API int sr_parse_sizestring(const char *sizestring, uint64_t *size)
{
int multiplier, done;
double frac_part;
char *s;
*size = strtoull(sizestring, &s, 10);
multiplier = 0;
frac_part = 0;
done = FALSE;
while (s && *s && multiplier == 0 && !done) {
switch (*s) {
case ' ':
break;
case '.':
frac_part = g_ascii_strtod(s, &s);
break;
case 'k':
case 'K':
multiplier = SR_KHZ(1);
@ -449,8 +454,11 @@ SR_API int sr_parse_sizestring(const char *sizestring, uint64_t *size)
}
s++;
}
if (multiplier > 0)
if (multiplier > 0) {
*size *= multiplier;
*size += frac_part * multiplier;
} else
*size += frac_part;
if (*s && strcasecmp(s, "Hz"))
return SR_ERR;