[FFmpeg-cvslog] avformat/seek: use av_malloc_array()
Michael Niedermayer
git at videolan.org
Sat Jul 19 20:42:53 CEST 2014
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sat Jul 19 19:44:56 2014 +0200| [a7bb22c5aaba81b2672456a0802e41773fed8aa0] | committer: Michael Niedermayer
avformat/seek: use av_malloc_array()
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a7bb22c5aaba81b2672456a0802e41773fed8aa0
---
libavformat/seek.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavformat/seek.c b/libavformat/seek.c
index bb5ca87..2368b5e 100644
--- a/libavformat/seek.c
+++ b/libavformat/seek.c
@@ -280,7 +280,7 @@ int64_t ff_gen_syncpoint_search(AVFormatContext *s,
}
// Initialize syncpoint structures for each stream.
- sync = av_malloc(s->nb_streams * sizeof(AVSyncPoint));
+ sync = av_malloc_array(s->nb_streams, sizeof(AVSyncPoint));
if (!sync)
// cannot allocate helper structure
return -1;
@@ -402,7 +402,7 @@ AVParserState *ff_store_parser_state(AVFormatContext *s)
if (!state)
return NULL;
- state->stream_states = av_malloc(sizeof(AVParserStreamState) * s->nb_streams);
+ state->stream_states = av_malloc_array(s->nb_streams, sizeof(AVParserStreamState));
if (!state->stream_states) {
av_free(state);
return NULL;
More information about the ffmpeg-cvslog
mailing list