From 94d448cacead10673eca21c6dfa6f9ecc61ab30b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 27 Jan 2011 17:46:19 +0100 Subject: [PATCH] examples: Fix uninitialized variable compiler warning with gcc 4.6 --- tests/examples/concatenate.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/tests/examples/concatenate.c b/tests/examples/concatenate.c index 05084cb2b0..09194e5361 100644 --- a/tests/examples/concatenate.c +++ b/tests/examples/concatenate.c @@ -68,7 +68,7 @@ make_profile_from_info (GstDiscovererInfo * info) /* For each on the formats add stream profiles */ for (tmp = substreams; tmp; tmp = tmp->next) { GstDiscovererStreamInfo *stream = GST_DISCOVERER_STREAM_INFO (tmp->data); - GstEncodingProfile *sprof; + GstEncodingProfile *sprof = NULL; if (GST_IS_DISCOVERER_VIDEO_INFO (stream)) { sprof = (GstEncodingProfile *) @@ -78,10 +78,12 @@ make_profile_from_info (GstDiscovererInfo * info) sprof = (GstEncodingProfile *) gst_encoding_audio_profile_new (gst_discoverer_stream_info_get_caps (stream), NULL, NULL, 1); - } else + } else { GST_WARNING ("Unsupported streams"); + } - gst_encoding_container_profile_add_profile (profile, sprof); + if (sprof) + gst_encoding_container_profile_add_profile (profile, sprof); } if (substreams) gst_discoverer_stream_info_list_free (substreams);