2005-05-31 Marco Pesenti Gritti <mpg@redhat.com>
* ps/ps-document.c: (ps_document_get_info):
Fix a double free
+2005-05-31 Marco Pesenti Gritti <mpg@redhat.com>
+
+ * ps/ps-document.c: (ps_document_get_info):
+
+ Fix a double free
+
2005-05-31 Nikolay V. Shmyrev <nshmyrev@yandex.ru>
* backend/ev-page-cache.c: (ev_page_cache_init),
info = g_new0 (EvDocumentInfo, 1);
info->fields_mask = EV_DOCUMENT_INFO_TITLE;
- info->title = ps->doc->title;
+ info->title = g_strdup (ps->doc->title);
return info;
}