[FFmpeg-devel] [PATCH 2/2] tests/api-seek: fix memory leak on realloc() failure
Michael Niedermayer
michael at niedermayer.cc
Sun Mar 12 15:12:37 EET 2017
On Sat, Mar 11, 2017 at 08:33:53PM -0300, James Almer wrote:
> Signed-off-by: James Almer <jamrial at gmail.com>
> ---
> tests/api/api-seek-test.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/tests/api/api-seek-test.c b/tests/api/api-seek-test.c
> index 6ef3b91933..503968fa13 100644
> --- a/tests/api/api-seek-test.c
> +++ b/tests/api/api-seek-test.c
> @@ -40,8 +40,8 @@ static int add_crc_to_array(uint32_t crc, int64_t pts)
> if (size_of_array == 0)
> size_of_array = 10;
> size_of_array *= 2;
> - crc_array = av_realloc(crc_array, size_of_array * sizeof(uint32_t));
> - pts_array = av_realloc(pts_array, size_of_array * sizeof(int64_t));
> + crc_array = av_realloc_f(crc_array, size_of_array, sizeof(uint32_t));
> + pts_array = av_realloc_f(pts_array, size_of_array, sizeof(int64_t));
> if ((crc_array == NULL) || (pts_array == NULL)) {
> av_log(NULL, AV_LOG_ERROR, "Can't allocate array to store crcs\n");
> return AVERROR(ENOMEM);
thats not enough, one of the reallocs can fail and one can succeed
the succeeded one would leak unless iam missing something
[...]
--
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB
While the State exists there can be no freedom; when there is freedom there
will be no State. -- Vladimir Lenin
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 181 bytes
Desc: Digital signature
URL: <http://ffmpeg.org/pipermail/ffmpeg-devel/attachments/20170312/64b1533f/attachment.sig>
More information about the ffmpeg-devel
mailing list