mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
playsink: Initialize variable to silence wrong compiler warning
This commit is contained in:
parent
d7371bc87c
commit
cc717f1f62
1 changed files with 2 additions and 1 deletions
|
@ -3511,7 +3511,8 @@ void
|
|||
gst_play_sink_refresh_pad (GstPlaySink * playsink, GstPad * pad,
|
||||
GstPlaySinkType type)
|
||||
{
|
||||
gulong *block_id;
|
||||
gulong *block_id = NULL;
|
||||
|
||||
GST_DEBUG_OBJECT (playsink, "refresh pad %" GST_PTR_FORMAT, pad);
|
||||
|
||||
GST_PLAY_SINK_LOCK (playsink);
|
||||
|
|
Loading…
Reference in a new issue