]> www.fi.muni.cz Git - evince.git/commitdiff
Initialize GError to NULL.
authorCarlos Garcia Campos <carlosgc@gnome.org>
Sat, 1 Nov 2008 14:13:01 +0000 (14:13 +0000)
committerCarlos Garcia Campos <carlosgc@src.gnome.org>
Sat, 1 Nov 2008 14:13:01 +0000 (14:13 +0000)
2008-11-01  Carlos Garcia Campos  <carlosgc@gnome.org>

* libdocument/ev-file-helpers.c: (ev_xfer_uri_simple):

Initialize GError to NULL.

svn path=/branches/gnome-2-24/; revision=3248

ChangeLog
libdocument/ev-file-helpers.c

index 1c29980c2154eb5721e6dcc6032e5ee2b1bbbbb6..80663dfd54289437f6e8f0be9556c696efae444d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-11-01  Carlos Garcia Campos  <carlosgc@gnome.org>
+
+       * libdocument/ev-file-helpers.c: (ev_xfer_uri_simple):
+
+       Initialize GError to NULL.
+       
 2008-10-27 Christian Persch <chpe@gnome.org>
 
        * backend/djvu/djvu-document.c
index 80254b3e69d649398f7ec1c3cac826d22babb082..45eb3ecbd2e6252929aede8bd14c846a33084400 100644 (file)
@@ -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)