fate/checkasm: fix use of uninitialized memory on hevc_add_res tests

This commit is contained in:
James Almer 2017-03-24 22:11:34 -03:00
parent 36eae45510
commit 09ce5519f3
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ static void check_add_res(HEVCDSPContext h, int bit_depth)
randomize_buffers(res0, size);
randomize_buffers2(dst0, size);
memcpy(res1, res0, sizeof(*res0) * size);
memcpy(dst1, dst0, size);
memcpy(dst1, dst0, sizeof(int16_t) * size);
if (check_func(h.add_residual[i - 2], "add_res_%dx%d_%d", block_size, block_size, bit_depth)) {
call_ref(dst0, res0, stride);