]> saetta.ns0.it Git - libgtkform/commitdiff
GtkFormFieldDateTime: validating return value from get_gdatetime_from_str (closes...
authorAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Wed, 22 Jan 2014 08:17:26 +0000 (09:17 +0100)
committerAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Wed, 22 Jan 2014 08:17:26 +0000 (09:17 +0100)
libgtkform/fielddatetime.c

index 048a50134e1cd1c3e4ca744e2ce18b46b0ac4403..6bc80fcffd6d4c95a66bcfa27f3ba63a7a186b1e 100644 (file)
@@ -1000,6 +1000,16 @@ GDateTime
                                                     hour,
                                                     minute,
                                                     seconds);
+
+                       if (ret != NULL)
+                               {
+                                       /* comparing with original string */
+                                       if (g_strcmp0 (str, g_date_time_format (ret, format)) != 0)
+                                               {
+                                                       g_date_time_unref (ret);
+                                                       ret = NULL;
+                                               }
+                               }
                }
 
        return ret;