Merge "Fix overread/write reported by valgrind if (mb_cols) & 3 != 0." into experimental

This commit is contained in:
Ronald S. Bultje 2013-01-29 12:49:22 -08:00 committed by Gerrit Code Review
commit 64401f838f

View File

@ -134,7 +134,8 @@ int vp9_alloc_frame_buffers(VP9_COMMON *oci, int width, int height) {
oci->prev_mi = oci->prev_mip + oci->mode_info_stride + 1;
oci->above_context = vpx_calloc(sizeof(ENTROPY_CONTEXT_PLANES) * oci->mb_cols, 1);
oci->above_context =
vpx_calloc(sizeof(ENTROPY_CONTEXT_PLANES) * (3 + oci->mb_cols), 1);
if (!oci->above_context) {
vp9_de_alloc_frame_buffers(oci);