mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-24 19:22:11 +01:00
Merge branch 'ossfuzz-16103-ordinal-dates' into 'master'
gdatetime: Fix error handling in g_date_time_new_ordinal() See merge request GNOME/glib!1115
This commit is contained in:
commit
c4ec302932
@ -1220,6 +1220,8 @@ g_date_time_new_ordinal (GTimeZone *tz, gint year, gint ordinal_day, gint hour,
|
||||
return NULL;
|
||||
|
||||
dt = g_date_time_new (tz, year, 1, 1, hour, minute, seconds);
|
||||
if (dt == NULL)
|
||||
return NULL;
|
||||
dt->days += ordinal_day - 1;
|
||||
|
||||
return dt;
|
||||
|
@ -866,6 +866,8 @@ test_GDateTime_new_from_iso8601_2 (void)
|
||||
{ TRUE, "+1980-02-22T12:36:00+02:00", 1980, 2, 22, 12, 36, 0, 0, 2 * G_TIME_SPAN_HOUR },
|
||||
{ TRUE, "1990-11-01T10:21:17 ", 1990, 11, 1, 10, 21, 17, 0, 0 },
|
||||
*/
|
||||
{ FALSE, "1719W462 407777-07", 0, 0, 0, 0, 0, 0, 0, 0 },
|
||||
{ FALSE, "4011090 260528Z", 0, 0, 0, 0, 0, 0, 0, 0 },
|
||||
};
|
||||
GTimeZone *tz = NULL;
|
||||
GDateTime *dt = NULL;
|
||||
|
Loading…
x
Reference in New Issue
Block a user