Commit 8ea9334b authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/mss2: use < 0 instead of != 0 to check for error of vlc initialization

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent b0322e4a
......@@ -317,7 +317,7 @@ static int decode_rle(GetBitContext *gb, uint8_t *pal_dst, int pal_stride,
if (next_code != 1 << current_length)
return AVERROR_INVALIDDATA;
if (i = init_vlc(&vlc, 9, alphabet_size, bits, 1, 1, codes, 4, 4, 0))
if ((i = init_vlc(&vlc, 9, alphabet_size, bits, 1, 1, codes, 4, 4, 0)) < 0)
return i;
/* frame decode */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment