aboutsummaryrefslogtreecommitdiff
path: root/src/update.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-01-04 19:51:54 +0100
committerMax Kellermann <max@duempel.org>2009-01-04 19:51:54 +0100
commit5e6ac50583bfe08aaf982eeb4373ff839eabc85e (patch)
treee58f5fb59ea60c001e1b6e10a12c6968d34e6593 /src/update.c
parent530f0b71de6d0e44911528eb4e256d165ed77c31 (diff)
initialize GError pointers
GLib mandates that you initialize all GError objects with NULL prior to passing it.
Diffstat (limited to 'src/update.c')
-rw-r--r--src/update.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/update.c b/src/update.c
index 7f5185cc..ce342b88 100644
--- a/src/update.c
+++ b/src/update.c
@@ -653,7 +653,7 @@ static void * update_task(void *_path)
static void spawn_update_task(char *path)
{
- GError *e;
+ GError *e = NULL;
assert(g_thread_self() == main_task);