mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-29 18:48:44 +00:00
tests: Fix another unitialized variable
This commit is contained in:
parent
d91a466dd5
commit
e22741f1dd
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue