mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-09-03 10:43:55 +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)
|
main (gint argc, gchar ** argv)
|
||||||
{
|
{
|
||||||
gint res = 1;
|
gint res = 1;
|
||||||
GstElement *src, *mix, *sink;
|
GstElement *src, *mix = NULL, *sink;
|
||||||
GstElement *bin;
|
GstElement *bin;
|
||||||
GstController *ctrl;
|
GstController *ctrl;
|
||||||
GstInterpolationControlSource *csource1, *csource2;
|
GstInterpolationControlSource *csource1, *csource2;
|
||||||
|
|
Loading…
Reference in a new issue