mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
tests: initialize variables
This commit is contained in:
parent
b928640b5e
commit
07f8c2a4e6
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue