util: allow for uppercase 'E' in safe_atod strings too

Fixes: 75d4acfe94 ("util: allow for 'e' in safe_atod strings")
Part-of: <https://gitlab.freedesktop.org/libinput/libinput/-/merge_requests/1475>
This commit is contained in:
Peter Hutterer 2026-04-30 19:33:09 +10:00
parent 089bc8ec81
commit 61b3b785ae
2 changed files with 2 additions and 0 deletions

View file

@ -283,6 +283,7 @@ safe_atod(const char *str, double *val)
case '-':
case '.':
case 'e':
case 'E':
break;
default:
return false;

View file

@ -1613,6 +1613,7 @@ START_TEST(safe_atod_test)
{ "-2147483648", true, -2147483648 },
{ "4294967295", true, 4294967295 },
{ "-1.3e-1", true, -0.130},
{ "1.5E2", true, 150.0},
{ "0x0", false, 0 },
{ "0x10", false, 0 },
{ "0xaf", false, 0 },