diff options
author | Philip Withnall <pwithnall@endlessos.org> | 2020-12-11 15:36:56 +0000 |
---|---|---|
committer | Philip Withnall <pwithnall@endlessos.org> | 2020-12-11 15:36:56 +0000 |
commit | 5d7f4b8f04847cf47a374f4845991106754569a0 (patch) | |
tree | a2973fbc87cbdae827eb5069a65f473fb121a990 /glib | |
parent | a28b3c9dd66386a25c181dcc819c4a11c3ad6338 (diff) | |
download | glib-5d7f4b8f04847cf47a374f4845991106754569a0.tar.gz |
gdatetime: Remove floating point from seconds parsing code
Rather than parsing the seconds in an ISO 8601 date/time using a pair of
floating point numbers (numerator and denominator), use two integers
instead. This avoids issues around floating point precision, and also
makes it easier to check for potential overflow from overlong inputs.
This last point means that the `isfinite()` check can be removed, as it
was covering the case where a NAN was generated, which isn’t now
possible using integer arithmetic.
Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
Diffstat (limited to 'glib')
-rw-r--r-- | glib/gdatetime.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/glib/gdatetime.c b/glib/gdatetime.c index 56eb8cc58..05e31202a 100644 --- a/glib/gdatetime.c +++ b/glib/gdatetime.c @@ -1181,7 +1181,7 @@ static gboolean get_iso8601_seconds (const gchar *text, gsize length, gdouble *value) { gsize i; - gdouble divisor = 1, v = 0; + guint64 divisor = 1, v = 0; if (length < 2) return FALSE; @@ -1208,17 +1208,15 @@ get_iso8601_seconds (const gchar *text, gsize length, gdouble *value) for (; i < length; i++) { const gchar c = text[i]; - if (c < '0' || c > '9') + if (c < '0' || c > '9' || + v > (G_MAXUINT64 - (c - '0')) / 10 || + divisor > G_MAXUINT64 / 10) return FALSE; v = v * 10 + (c - '0'); divisor *= 10; } - v = v / divisor; - if (!isfinite (v)) - return FALSE; - - *value = v; + *value = (gdouble) v / divisor; return TRUE; } |