Blame SOURCES/0002-CVE-2019-9433-VP8-Fix-use-after-free-in-postproc.patch
|
|
44b363 |
From 93681819b22d3f42cf5fdfa85701f38e5bab10dd Mon Sep 17 00:00:00 2001
|
|
|
44b363 |
From: Wim Taymans <wtaymans@redhat.com>
|
|
|
44b363 |
Date: Wed, 25 Mar 2020 13:42:07 +0100
|
|
|
44b363 |
Subject: [PATCH 2/2] CVE-2019-9433: VP8: Fix use-after-free in postproc.
|
|
|
44b363 |
|
|
|
44b363 |
The pointer in vp8 postproc refers to show_frame_mi which is only
|
|
|
44b363 |
updated on show frame. However, when there is a no-show frame which also
|
|
|
44b363 |
changes the size (thus new frame buffers allocated), show_frame_mi is
|
|
|
44b363 |
not updated with new frame buffer memory.
|
|
|
44b363 |
|
|
|
44b363 |
Change the pointer in postproc to mi which is always updated.
|
|
|
44b363 |
|
|
|
44b363 |
Bug: 842265
|
|
|
44b363 |
---
|
|
|
44b363 |
vp8/common/postproc.c | 2 +-
|
|
|
44b363 |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
44b363 |
|
|
|
44b363 |
diff --git a/vp8/common/postproc.c b/vp8/common/postproc.c
|
|
|
44b363 |
index d67ee8a57..8c292d616 100644
|
|
|
44b363 |
--- a/vp8/common/postproc.c
|
|
|
44b363 |
+++ b/vp8/common/postproc.c
|
|
|
44b363 |
@@ -65,7 +65,7 @@ void vp8_deblock(VP8_COMMON *cm, YV12_BUFFER_CONFIG *source,
|
|
|
44b363 |
double level = 6.0e-05 * q * q * q - .0067 * q * q + .306 * q + .0065;
|
|
|
44b363 |
int ppl = (int)(level + .5);
|
|
|
44b363 |
|
|
|
44b363 |
- const MODE_INFO *mode_info_context = cm->show_frame_mi;
|
|
|
44b363 |
+ const MODE_INFO *mode_info_context = cm->mi;
|
|
|
44b363 |
int mbr, mbc;
|
|
|
44b363 |
|
|
|
44b363 |
/* The pixel thresholds are adjusted according to if or not the macroblock
|
|
|
44b363 |
--
|
|
|
44b363 |
2.25.1
|
|
|
44b363 |
|