]> git.sesse.net Git - ffmpeg/blobdiff - ffmpeg.c
Merge commit 'dcbfb7805a655757e0dac2a647dfcd3de0ab0510'
[ffmpeg] / ffmpeg.c
index e7b42906a45431201c17bc1587432a4b8714566c..b2e39e8d0eed3604c676cddbe57f65ae8aa8955b 100644 (file)
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -2150,7 +2150,7 @@ static void print_sdp(void)
 {
     char sdp[16384];
     int i;
-    AVFormatContext **avc = av_malloc(sizeof(*avc) * nb_output_files);
+    AVFormatContext **avc = av_malloc_array(nb_output_files, sizeof(*avc));
 
     if (!avc)
         exit_program(1);
@@ -2285,7 +2285,7 @@ static void parse_forced_key_frames(char *kf, OutputStream *ost,
         if (*p == ',')
             n++;
     size = n;
-    pts = av_malloc(sizeof(*pts) * size);
+    pts = av_malloc_array(size, sizeof(*pts));
     if (!pts) {
         av_log(NULL, AV_LOG_FATAL, "Could not allocate forced key frames array.\n");
         exit_program(1);