mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
qtdemux: Fix uninitialized variable warning
Fix another bogus may-be-used-uninitialized warning in qtdemux
This commit is contained in:
parent
50110d022d
commit
99f43dbb58
1 changed files with 1 additions and 1 deletions
|
@ -3892,7 +3892,7 @@ qtdemux_parse_samples (GstQTDemux * qtdemux, QtDemuxStream * stream,
|
|||
}
|
||||
/* stps marks partial sync frames like open GOP I-Frames */
|
||||
if (qtdemux_tree_get_child_by_type_full (stbl, FOURCC_stps, &stps)) {
|
||||
guint32 n_sample_syncs;
|
||||
guint32 n_sample_syncs = 0;
|
||||
|
||||
if (!qt_atom_parser_skip (&stps, 4))
|
||||
goto corrupt_file;
|
||||
|
|
Loading…
Reference in a new issue