mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 01:30:38 +00:00
avidemux: fix 'variable may be used uninitialized' warnings caused by -DG_DISABLE_ASSERT
This commit is contained in:
parent
5c9e2646e0
commit
75d5c41f29
1 changed files with 1 additions and 1 deletions
|
@ -2248,7 +2248,7 @@ gst_avi_demux_parse_stream (GstAviDemux * avi, GstBuffer * buf)
|
|||
break;
|
||||
}
|
||||
default:
|
||||
g_assert_not_reached ();
|
||||
g_return_val_if_reached (FALSE);
|
||||
}
|
||||
|
||||
/* no caps means no stream */
|
||||
|
|
Loading…
Reference in a new issue