From: Carlos Garcia Campos Date: Sat, 1 Nov 2008 14:13:01 +0000 (+0000) Subject: Initialize GError to NULL. X-Git-Tag: EVINCE_2_24_2~5 X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=commitdiff_plain;h=b90e18a600e471f5568255aa4a9ab02973f3fef1;p=evince.git Initialize GError to NULL. 2008-11-01 Carlos Garcia Campos * libdocument/ev-file-helpers.c: (ev_xfer_uri_simple): Initialize GError to NULL. svn path=/branches/gnome-2-24/; revision=3248 --- diff --git a/ChangeLog b/ChangeLog index 1c29980c..80663dfd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-11-01 Carlos Garcia Campos + + * libdocument/ev-file-helpers.c: (ev_xfer_uri_simple): + + Initialize GError to NULL. + 2008-10-27 Christian Persch * backend/djvu/djvu-document.c diff --git a/libdocument/ev-file-helpers.c b/libdocument/ev-file-helpers.c index 80254b3e..45eb3ecb 100644 --- a/libdocument/ev-file-helpers.c +++ b/libdocument/ev-file-helpers.c @@ -209,7 +209,7 @@ ev_xfer_uri_simple (const char *from, { GFile *source_file; GFile *target_file; - GError *ioerror; + GError *ioerror = NULL; gboolean result; if (!from)