libavutil/base64: Try not to write over the array end
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 2d216566f258badd07bc58de1e089b6e4175dc46) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
559dd6f68a
commit
b9985f105e
@ -127,10 +127,12 @@ validity_check:
|
|||||||
}
|
}
|
||||||
|
|
||||||
out3:
|
out3:
|
||||||
*dst++ = v >> 10;
|
if (end - dst)
|
||||||
|
*dst++ = v >> 10;
|
||||||
v <<= 2;
|
v <<= 2;
|
||||||
out2:
|
out2:
|
||||||
*dst++ = v >> 4;
|
if (end - dst)
|
||||||
|
*dst++ = v >> 4;
|
||||||
out1:
|
out1:
|
||||||
out0:
|
out0:
|
||||||
return bits & 1 ? AVERROR_INVALIDDATA : out ? dst - out : 0;
|
return bits & 1 ? AVERROR_INVALIDDATA : out ? dst - out : 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user