From: Bastien Nocera Date: Thu, 17 Apr 2014 07:18:14 +0000 (+0200) Subject: GDateTime: Add guards to g_date_time_new() X-Git-Tag: 2.41.2~43 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=88b284c07051ccf5a7561d04236d83c8bb61993a;p=platform%2Fupstream%2Fglib.git GDateTime: Add guards to g_date_time_new() https://bugzilla.gnome.org/show_bug.cgi?id=728401 --- diff --git a/glib/gdatetime.c b/glib/gdatetime.c index 2d20679..cbbf620 100644 --- a/glib/gdatetime.c +++ b/glib/gdatetime.c @@ -944,6 +944,8 @@ g_date_time_new (GTimeZone *tz, GDateTime *datetime; gint64 full_time; + g_return_val_if_fail (tz != NULL, NULL); + if (year < 1 || year > 9999 || month < 1 || month > 12 || day < 1 || day > 31 ||