31 lines
1.6 KiB
Diff
31 lines
1.6 KiB
Diff
|
--- poppler-20.11.0/glib/poppler-attachment.cc
|
||
|
+++ poppler-20.11.0/glib/poppler-attachment.cc
|
||
|
@@ -114,17 +114,21 @@ PopplerAttachment *_poppler_attachment_n
|
||
|
if (embFile->createDate()) {
|
||
|
priv->ctime = _poppler_convert_pdf_date_to_date_time(embFile->createDate());
|
||
|
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||
|
- /* This will overflow on dates from after 2038. This field is
|
||
|
- * deprecated, only kept for backward compatibility. */
|
||
|
- attachment->ctime = (GTime)g_date_time_to_unix(priv->ctime);
|
||
|
+ if (priv->ctime != NULL) {
|
||
|
+ /* This will overflow on dates from after 2038. This field is
|
||
|
+ * deprecated, only kept for backward compatibility. */
|
||
|
+ attachment->ctime = (GTime)g_date_time_to_unix(priv->ctime);
|
||
|
+ }
|
||
|
G_GNUC_END_IGNORE_DEPRECATIONS
|
||
|
}
|
||
|
if (embFile->modDate()) {
|
||
|
priv->mtime = _poppler_convert_pdf_date_to_date_time(embFile->modDate());
|
||
|
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||
|
- /* This will overflow on dates from after 2038. This field is
|
||
|
- * deprecated, only kept for backward compatibility. */
|
||
|
- attachment->mtime = (GTime)g_date_time_to_unix(priv->mtime);
|
||
|
+ if (priv->mtime != NULL) {
|
||
|
+ /* This will overflow on dates from after 2038. This field is
|
||
|
+ * deprecated, only kept for backward compatibility. */
|
||
|
+ attachment->mtime = (GTime)g_date_time_to_unix(priv->mtime);
|
||
|
+ }
|
||
|
G_GNUC_END_IGNORE_DEPRECATIONS
|
||
|
}
|
||
|
|