diff src/cue/cuesheet.c @ 3046:75cd491339c9

ported icecast plugin, fixed possibly uninitialized variable in cue plugin
author Andrew O. Shadoura <bugzilla@tut.by>
date Fri, 17 Apr 2009 16:11:16 +0300
parents 63bf9d97ce65
children
line wrap: on
line diff
--- a/src/cue/cuesheet.c	Thu Apr 16 16:53:42 2009 -0500
+++ b/src/cue/cuesheet.c	Fri Apr 17 16:11:16 2009 +0300
@@ -187,7 +187,7 @@
 Tuple *
 get_song_tuple(gchar *uri) /* *.cue or *.cue?1- */
 {
-    Tuple *phys_tuple, *out;
+    Tuple *phys_tuple = NULL, *out;
     ProbeResult *pr = NULL;
     InputPlugin *dec = NULL;
     gint track = 0;