]> git.sesse.net Git - ffmpeg/commitdiff
cmdutils.c: Use av_realloc_array()
authorMichael Niedermayer <michaelni@gmx.at>
Tue, 6 Jan 2015 16:52:54 +0000 (17:52 +0100)
committerMichael Niedermayer <michaelni@gmx.at>
Tue, 6 Jan 2015 16:52:54 +0000 (17:52 +0100)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
cmdutils.c

index b35180e70552a3fe775523cbb2d539cee9dbe3d2..1361106c75a5bc6930f3b13afe9739910f041623 100644 (file)
@@ -2060,7 +2060,7 @@ void *grow_array(void *array, int elem_size, int *size, int new_size)
         exit_program(1);
     }
     if (*size < new_size) {
-        uint8_t *tmp = av_realloc(array, new_size*elem_size);
+        uint8_t *tmp = av_realloc_array(array, new_size, elem_size);
         if (!tmp) {
             av_log(NULL, AV_LOG_ERROR, "Could not alloc buffer.\n");
             exit_program(1);