mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 03:59:43 +00:00
avformat/rtspdec: Use av_mallocz_array()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
2870617853
commit
5be8c27694
@ -696,7 +696,7 @@ static int rtsp_read_header(AVFormatContext *s)
|
||||
return ret;
|
||||
|
||||
rt->real_setup_cache = !s->nb_streams ? NULL :
|
||||
av_mallocz(2 * s->nb_streams * sizeof(*rt->real_setup_cache));
|
||||
av_mallocz_array(s->nb_streams, 2 * sizeof(*rt->real_setup_cache));
|
||||
if (!rt->real_setup_cache && s->nb_streams)
|
||||
return AVERROR(ENOMEM);
|
||||
rt->real_setup = rt->real_setup_cache + s->nb_streams;
|
||||
|
Loading…
Reference in New Issue
Block a user