*solipa_get_gdatetime_from_string (const gchar *string, const gchar *format)
{
GDateTime *ret;
+
gchar *new_str;
gchar *new_format;
gchar **str_tokens;
gint minute;
gdouble seconds;
+ gboolean error;
+
g_return_val_if_fail (string != NULL, NULL);
new_str = g_strstrip (g_strdup (string));
len_strv = g_strv_length (str_tokens);
len_formatv = g_strv_length (format_tokens);
+ year = 1;
+ month = 1;
+ day = 1;
+ hour = 0;
+ minute = 0;
+ seconds = 0.0;
+
+ error = FALSE;
+ ret = NULL;
+
i_to = MIN (len_strv, len_formatv);
for (i = 0; i < i_to; i++)
{
if (g_strcmp0 (format_tokens[i], "%Y") == 0)
{
year = strtol (str_tokens[i], NULL, 10);
+ if (year < 1 || year > 9999)
+ {
+ error = TRUE;
+ break;
+ }
}
else if (g_strcmp0 (format_tokens[i], "%m") == 0)
{
month = strtol (str_tokens[i], NULL, 10);
+ if (month < 1 || month > 12)
+ {
+ error = TRUE;
+ break;
+ }
}
else if (g_strcmp0 (format_tokens[i], "%d") == 0)
{
day = strtol (str_tokens[i], NULL, 10);
+ if (day < 1 || day > 31)
+ {
+ error = TRUE;
+ break;
+ }
}
else if (g_strcmp0 (format_tokens[i], "%H") == 0)
{
hour = strtol (str_tokens[i], NULL, 10);
+ if (hour > 23)
+ {
+ error = TRUE;
+ break;
+ }
}
else if (g_strcmp0 (format_tokens[i], "%M") == 0)
{
minute = strtol (str_tokens[i], NULL, 10);
+ if (minute > 59)
+ {
+ error = TRUE;
+ break;
+ }
}
else if (g_strcmp0 (format_tokens[i], "%S") == 0)
{
seconds = g_strtod (str_tokens[i], NULL);
+ if (seconds > 59.0)
+ {
+ error = TRUE;
+ break;
+ }
}
}
g_free (new_format);
g_free (new_str);
- ret = g_date_time_new_local (year,
- month,
- day,
- hour,
- minute,
- seconds);
+ if (!error)
+ {
+ ret = g_date_time_new_local (year,
+ month,
+ day,
+ hour,
+ minute,
+ seconds);
+ }
return ret;
}