From: Stefan Sauer Date: Thu, 19 Apr 2012 12:41:40 +0000 (+0200) Subject: tests: initialize variables X-Git-Tag: 1.19.3~511^2~6543 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0d50fc03ccae297eddc9d19f2a6baf286a27cc56;p=platform%2Fupstream%2Fgstreamer.git tests: initialize variables --- diff --git a/tests/check/pipelines/streamheader.c b/tests/check/pipelines/streamheader.c index 77e998c..e3c8d06 100644 --- a/tests/check/pipelines/streamheader.c +++ b/tests/check/pipelines/streamheader.c @@ -69,7 +69,7 @@ GST_START_TEST (test_multisocketsink_gdp_tag) GstPad *pad; GMainLoop *loop; int pfd[2]; - GSocket *s[2]; + GSocket *s[2] = { NULL, }; loop = g_main_loop_new (NULL, FALSE); @@ -185,7 +185,7 @@ GST_START_TEST (test_multisocketsink_gdp_vorbisenc) GstPad *pad; GMainLoop *loop; int pfd[2]; - GSocket *s[2]; + GSocket *s[2] = { NULL, }; loop = g_main_loop_new (NULL, FALSE);