Commit dc40e64a authored by James Almer's avatar James Almer

hvcc: zero initialize the nal buffers past the last written byte

Bug-Id: 1116
Cc: libav-stable@libav.org
Signed-off-by: 's avatarJames Almer <jamrial@gmail.com>
parent 8ca39b85
......@@ -657,6 +657,8 @@ static uint8_t *nal_unit_extract_rbsp(const uint8_t *src, uint32_t src_len,
while (i < src_len)
dst[len++] = src[i++];
memset(dst + len, 0, AV_INPUT_BUFFER_PADDING_SIZE);
*dst_len = len;
return dst;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment