[FFmpeg-cvslog] tests/api-seek: fix memory leak on realloc() failure
James Almer
git at videolan.org
Sun Mar 12 19:29:38 EET 2017
ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Sat Mar 11 20:29:40 2017 -0300| [ff17c76e92cd9a9072a8771cad73c96cd620040b] | committer: James Almer
tests/api-seek: fix memory leak on realloc() failure
Reviewed-by: Michael Niedermayer <michael at niedermayer.cc>
Signed-off-by: James Almer <jamrial at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ff17c76e92cd9a9072a8771cad73c96cd620040b
---
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 e4276eb..4fd1e6e 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);
More information about the ffmpeg-cvslog
mailing list