From e22741f1dd22ad605fabb6dca7777f9f196c65af Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Thu, 11 Mar 2010 16:35:10 +0100 Subject: [PATCH] tests: Fix another unitialized variable --- tests/icles/audio-trickplay.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/icles/audio-trickplay.c b/tests/icles/audio-trickplay.c index 382d7d24ea..e029c350a3 100644 --- a/tests/icles/audio-trickplay.c +++ b/tests/icles/audio-trickplay.c @@ -25,7 +25,7 @@ gint main (gint argc, gchar ** argv) { gint res = 1; - GstElement *src, *mix, *sink; + GstElement *src, *mix = NULL, *sink; GstElement *bin; GstController *ctrl; GstInterpolationControlSource *csource1, *csource2;