Incorrect since 4959f18a8e11ad7d3529b1c4fc429f1b6b76ad7c. Signed-off-by: Andreas Rheinhardt <andreas.rheinha...@outlook.com> --- Do we even need both av_mallocz_array and av_calloc given that they do exactly the same? I'd like to deprecate one, namely av_mallocz_array() (it has the longer name).
libavutil/mem.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavutil/mem.h b/libavutil/mem.h index e9d343eaf0..c7f8867a13 100644 --- a/libavutil/mem.h +++ b/libavutil/mem.h @@ -240,7 +240,7 @@ av_alloc_size(1, 2) void *av_malloc_array(size_t nmemb, size_t size); av_alloc_size(1, 2) void *av_mallocz_array(size_t nmemb, size_t size); /** - * Non-inlined equivalent of av_mallocz_array(). + * Equivalent of av_mallocz_array(). * * Created for symmetry with the calloc() C function. */ -- 2.30.2 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".