]> git.sesse.net Git - ffmpeg/commit
avformat/pp_bnk: Fix memleaks when reading non-stereo tracks
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Sat, 20 Mar 2021 06:43:09 +0000 (07:43 +0100)
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Sat, 20 Mar 2021 07:21:30 +0000 (08:21 +0100)
commit8a73313412eeafcfa5afa45f39f65f2581ba3bbc
tree35beb5cd81ba3fb279af03958e00904b2672d2f3
parent258a88dfe48e0eea1dd62ff196db36180d02a16e
avformat/pp_bnk: Fix memleaks when reading non-stereo tracks

Commit 6973df112275c8ea4af0bf3cb1338baecc1d06b3 added support
for music tracks by outputting its two containing tracks
together in one packet. But the actual data is not contiguous
in the file and therefore one can't simply use av_get_packet()
(which has been used before) for it. Therefore the packet was
now allocated via av_new_packet() and read via avio_read();
and this is also for non-music files.

This causes problems because one can now longer rely on things
done automatically by av_get_packet(): It automatically freed
the packet in case of errors; this lead to memleaks in several
FATE-tests covering this demuxer. Furthermore, in case the data
read is less than the data desired, the returned packet was not
zero-allocated (the packet's padding was uninitialized);
for music files the actual data could even be uninitialized.

The former problems are fixed by using av_get_packet() for
non-music files; the latter problem is handled by erroring out
unless both tracks could be fully read.

Reviewed-by: Zane van Iperen <zane@zanevaniperen.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
libavformat/pp_bnk.c