ref: 9c3c1f3725762715c402b63fc852f62e715b491e
parent: 9e7140b451b44c7daa63d39b978d52b2ddd081ea
author: James Zern <[email protected]>
date: Fri Mar 3 10:23:32 EST 2017
vp8_create_decoder_instances: correct pbi[] memset clear the entire array on error. the size used previously was equal to the number of elements. BUG=webm:1364 Change-Id: I2f2e16ed6e867f41d4774a5a8ac9cedaee11ce46
--- a/vp8/decoder/onyxd_if.c
+++ b/vp8/decoder/onyxd_if.c
@@ -446,7 +446,7 @@
#if CONFIG_MULTITHREAD
if (setjmp(fb->pbi[0]->common.error.jmp)) {
vp8_remove_decoder_instances(fb);
- memset(fb->pbi, 0, sizeof(fb->pbi) / sizeof(fb->pbi[0]));
+ memset(fb->pbi, 0, sizeof(fb->pbi));
vpx_clear_system_state();
return VPX_CODEC_ERROR;
}