mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 00:06:36 +00:00
wildmidi: fix possible uninitialized variables
This commit is contained in:
parent
6c014f7e36
commit
ff5d1a18f3
1 changed files with 1 additions and 1 deletions
|
@ -417,7 +417,7 @@ gst_wildmidi_src_query (GstPad * pad, GstObject * parent, GstQuery * query)
|
|||
static GstEvent *
|
||||
gst_wildmidi_get_new_segment_event (GstWildmidi * wildmidi, GstFormat format)
|
||||
{
|
||||
gint64 start, stop, time;
|
||||
gint64 start = 0, stop = -1, time = 0;
|
||||
GstSegment *segment, newseg;
|
||||
GstEvent *event;
|
||||
GstFormat src_format;
|
||||
|
|
Loading…
Reference in a new issue