From: Carlos Garcia Campos Date: Wed, 13 Jun 2007 09:22:55 +0000 (+0000) Subject: Fix memory leaks. X-Git-Tag: EVINCE_0_8_2~10 X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=commitdiff_plain;h=960ea106974165c7387b2c603b584b41a743d0a3;p=evince.git Fix memory leaks. 2007-06-13 Carlos Garcia Campos * libdocument/ev-document.c: (ev_document_info_free): Fix memory leaks. svn path=/branches/gnome-2-18/; revision=2501 --- diff --git a/ChangeLog b/ChangeLog index 2da46539..58633a66 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-06-13 Carlos Garcia Campos + + * libdocument/ev-document.c: (ev_document_info_free): + + Fix memory leaks. + 2007-06-12 Carlos Garcia Campos * shell/ev-window-title.c: (ev_window_title_update): diff --git a/libdocument/ev-document.c b/libdocument/ev-document.c index a951bfa3..cae56cab 100644 --- a/libdocument/ev-document.c +++ b/libdocument/ev-document.c @@ -256,6 +256,9 @@ 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);