[FFmpeg-cvslog] avformat/network: use av_malloc_array()
Michael Niedermayer
git at videolan.org
Sun Apr 13 23:45:41 CEST 2014
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sun Apr 13 23:39:49 2014 +0200| [2ebacb0fc4449f250d172776c4d3e88914b6f151] | committer: Michael Niedermayer
avformat/network: use av_malloc_array()
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=2ebacb0fc4449f250d172776c4d3e88914b6f151
---
libavformat/network.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/network.c b/libavformat/network.c
index 5e2bcf8..5e574e3 100644
--- a/libavformat/network.c
+++ b/libavformat/network.c
@@ -76,7 +76,7 @@ void ff_tls_init(void)
#if HAVE_THREADS
if (!CRYPTO_get_locking_callback()) {
int i;
- openssl_mutexes = av_malloc(sizeof(pthread_mutex_t) * CRYPTO_num_locks());
+ openssl_mutexes = av_malloc_array(sizeof(pthread_mutex_t), CRYPTO_num_locks());
for (i = 0; i < CRYPTO_num_locks(); i++)
pthread_mutex_init(&openssl_mutexes[i], NULL);
CRYPTO_set_locking_callback(openssl_lock);
More information about the ffmpeg-cvslog
mailing list