Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/libdocument
diff options
context:
space:
mode:
authorCarlos Garcia Campos <carlosgc@gnome.org>2008-11-01 14:10:05 (GMT)
committer Carlos Garcia Campos <carlosgc@src.gnome.org>2008-11-01 14:10:05 (GMT)
commit40f1be123c6f0d9b7d8a28cf27093948c5ef7f9e (patch)
tree5377ca2385300cbe3e77c5712ecded0551179737 /libdocument
parent125b3ea4d310be1c0a32dae8a8778f5438f15758 (diff)
Initialize GError to NULL.
2008-11-01 Carlos Garcia Campos <carlosgc@gnome.org> * libdocument/ev-file-helpers.c: (ev_xfer_uri_simple): Initialize GError to NULL. svn path=/trunk/; revision=3247
Diffstat (limited to 'libdocument')
-rw-r--r--libdocument/ev-file-helpers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libdocument/ev-file-helpers.c b/libdocument/ev-file-helpers.c
index 80254b3..45eb3ec 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)