aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoder_thread.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/decoder_thread.c
parent530f0b71de6d0e44911528eb4e256d165ed77c31 (diff)
downloadmpd-5e6ac50583bfe08aaf982eeb4373ff839eabc85e.tar.gz
mpd-5e6ac50583bfe08aaf982eeb4373ff839eabc85e.tar.xz
mpd-5e6ac50583bfe08aaf982eeb4373ff839eabc85e.zip
initialize GError pointers
GLib mandates that you initialize all GError objects with NULL prior to passing it.
Diffstat (limited to '')
-rw-r--r--src/decoder_thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decoder_thread.c b/src/decoder_thread.c
index a856c1f00..2d2e50b39 100644
--- a/src/decoder_thread.c
+++ b/src/decoder_thread.c
@@ -253,7 +253,7 @@ static gpointer decoder_task(G_GNUC_UNUSED gpointer arg)
void decoder_thread_start(void)
{
- GError *e;
+ GError *e = NULL;
GThread *t;
if (!(t = g_thread_create(decoder_task, NULL, FALSE, &e)))