projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6f30d4e
)
[CVE-2017-17129] vc1: skip motion compensation when data fro last picture is invalid
48/176448/1
author
Jiyong Min
<jiyong.min@samsung.com>
Tue, 17 Apr 2018 06:33:11 +0000
(15:33 +0900)
committer
Jiyong Min
<jiyong.min@samsung.com>
Thu, 19 Apr 2018 08:32:37 +0000
(08:32 +0000)
Bug-Id: 1101
Cc: libav-stable@libav.org
(cherry picked from commit
5085f25ace1e74846a0de3369bedd0e22d1a1bdc
)
Signed-off-by: Sean McGovern <gseanmcg@gmail.com>
Change-Id: I5f13d62d569ac3262a35ff11a3808abb59eff67a
(cherry picked from commit
7be0ce8d7175a1a3dcbd165c303107e294bf8171
)
libavcodec/vc1_mc.c
patch
|
blob
|
history
diff --git
a/libavcodec/vc1_mc.c
b/libavcodec/vc1_mc.c
index f4632d62476004ba986b89fc4c7e0aaf34a90945..18ac47a0378f05ab0131924d6e0d8f1713b2f055 100644
(file)
--- a/
libavcodec/vc1_mc.c
+++ b/
libavcodec/vc1_mc.c
@@
-689,6
+689,11
@@
void ff_vc1_mc_4mv_chroma4(VC1Context *v, int dir, int dir2, int avg)
if (s->avctx->flags & AV_CODEC_FLAG_GRAY)
return;
+ if (!s->last_picture.f->data[1]) {
+ av_log(s->avctx, AV_LOG_ERROR, "Bad data in last picture frame.\n");
+ return;
+ }
+
for (i = 0; i < 4; i++) {
int d = i < 2 ? dir: dir2;
tx = s->mv[d][i][0];