* properties/ev-properties-view.c:
(ev_properties_view_format_date):
Check if date is invalid. Fix for bug 318134.
+2005-10-12 Nickolay V. Shmyrev <nshmyrev@yandex.ru>
+
+ * properties/ev-properties-view.c:
+ (ev_properties_view_format_date):
+
+ Check if date is invalid. Fix for bug 318134.
+
2005-10-02 Wouter Bolsterlee <uws+gnome@xs4all.nl>
* shell/ev-window-title.c:
const char *fmt_hack = "%c";
size_t len;
- if (!localtime_r (&time, &t)) return NULL;
+ if (time == 0 || !localtime_r (&time, &t)) return NULL;
len = strftime (s, sizeof (s), fmt_hack, &t);
if (len == 0 || s[0] == '\0') return NULL;