This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
avcodec/scpr: fix checking ret value of decode_run_i
Fixes Coverity CID 1441460. Signed-off-by: Marton Balint <cus@passwd.hu>
tags/n4.2
Marton Balint
6 years ago
parent
f9271d0158
commit
1b4f74ffe2
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/scpr.c
+ 1
- 1
libavcodec/scpr.c
View File
@@ -359,7 +359,7 @@ static int decompress_i(AVCodecContext *avctx, uint32_t *dst, int linesize)
ret = decode_run_i(avctx, ptype, run, &x, &y, clr,
dst, linesize, &lx, &ly,
backstep, off, &cx, &cx1);
if (r
un
< 0)
if (r
et
< 0)
return ret;
}
Write
Preview
Loading…
Cancel
Save