]> www.fi.muni.cz Git - evince.git/blobdiff - libdocument/ev-document.c
Check for NULL, fixes bug #460862.
[evince.git] / libdocument / ev-document.c
index 776e4bdf4afba7c183878cb8a2a8cee1a3fb3d30..e0ce69fd644e9df4d8c8aa5b0da1601034f47b82 100644 (file)
@@ -256,7 +256,11 @@ ev_document_info_free (EvDocumentInfo *info)
        g_free (info->author);
        g_free (info->subject);
        g_free (info->keywords);
+       g_free (info->creator);
+       g_free (info->producer);
+       g_free (info->linearized);
        g_free (info->security);
+       
 
        g_free (info);
 }
@@ -279,3 +283,6 @@ ev_rect_cmp (EvRectangle *a,
                  (ABS (a->x2 - b->x2) < EPSILON) &&
                  (ABS (a->y2 - b->y2) < EPSILON));
 }
+
+
+