diff options
author | Max Kellermann <max@duempel.org> | 2009-01-04 19:51:54 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-04 19:51:54 +0100 |
commit | 5e6ac50583bfe08aaf982eeb4373ff839eabc85e (patch) | |
tree | e58f5fb59ea60c001e1b6e10a12c6968d34e6593 /src/output_thread.c | |
parent | 530f0b71de6d0e44911528eb4e256d165ed77c31 (diff) | |
download | mpd-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/output_thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/output_thread.c b/src/output_thread.c index 316c4a719..63c443ddc 100644 --- a/src/output_thread.c +++ b/src/output_thread.c @@ -167,7 +167,7 @@ static gpointer audio_output_task(gpointer arg) void audio_output_thread_start(struct audio_output *ao) { - GError *e; + GError *e = NULL; assert(ao->command == AO_COMMAND_NONE); |