mirror of https://git.ffmpeg.org/ffmpeg.git
av_memcpy_backptr: avoid an infinite loop for back = 0
CC:libav-stable@libav.org
This commit is contained in:
parent
8097fc9a2d
commit
f935aca44c
|
@ -252,6 +252,9 @@ static void fill32(uint8_t *dst, int len)
|
|||
void av_memcpy_backptr(uint8_t *dst, int back, int cnt)
|
||||
{
|
||||
const uint8_t *src = &dst[-back];
|
||||
if (!back)
|
||||
return;
|
||||
|
||||
if (back == 1) {
|
||||
memset(dst, *src, cnt);
|
||||
} else if (back == 2) {
|
||||
|
|
Loading…
Reference in New Issue