tests: matroskamux avoid -Wmaybe-uninitialized
authorVictor Toso <me@victortoso.com>
Thu, 17 Jan 2019 15:19:40 +0000 (16:19 +0100)
committerNicolas Dufresne <nicolas@ndufresne.ca>
Fri, 18 Jan 2019 13:53:18 +0000 (13:53 +0000)
commit2f77d877c3cdc93c9cccf6511b4593094058a802
tree17d4e124f393aae1da192779ed10279a206d4d3c
parentf5bb377a787f6516f25c964939afac682cce62ac
tests: matroskamux avoid -Wmaybe-uninitialized

False positive for the three variables but some warnings like:

   ../tests/check/elements/matroskamux.c:875:10:
    warning: 'chapters_offset' may be used uninitialized in this function [-Wmaybe-uninitialized]
   *index = chapters_offset;
   ~~~~~~~^~~~~~~~~~~~~~~~~

The above is false positive as there is a gboolean to check if it was
initialized or not (found_chapters_declaration).
tests/check/elements/matroskamux.c