mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
flacparse: remove dead code
The block_size == 0 was shortcut earlier, and the variable is not modified in the meantime. Coverity 206097
This commit is contained in:
parent
2e120c9440
commit
937269d02e
1 changed files with 1 additions and 3 deletions
|
@ -505,9 +505,7 @@ gst_flac_parse_frame_header_is_valid (GstFlacParse * flacparse,
|
|||
}
|
||||
|
||||
/* calculate real blocksize from the blocksize index */
|
||||
if (block_size == 0) {
|
||||
goto error;
|
||||
} else if (block_size == 6) {
|
||||
if (block_size == 6) {
|
||||
if (!gst_bit_reader_get_bits_uint16 (&reader, &block_size, 8))
|
||||
goto need_more_data;
|
||||
block_size++;
|
||||
|
|
Loading…
Reference in a new issue