avformat/network: Check for av_malloc* failures in ff_tls_init()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2015-01-22 15:50:48 +01:00
parent 9d7ae72725
commit 7620d48f2e
4 changed files with 10 additions and 4 deletions

View File

@ -66,7 +66,7 @@ GCRY_THREAD_OPTION_PTHREAD_IMPL;
#endif
#endif
void ff_tls_init(void)
int ff_tls_init(void)
{
avpriv_lock_avformat();
#if CONFIG_OPENSSL
@ -77,6 +77,8 @@ void ff_tls_init(void)
if (!CRYPTO_get_locking_callback()) {
int i;
openssl_mutexes = av_malloc_array(sizeof(pthread_mutex_t), CRYPTO_num_locks());
if (!openssl_mutexes)
return AVERROR(ENOMEM);
for (i = 0; i < CRYPTO_num_locks(); i++)
pthread_mutex_init(&openssl_mutexes[i], NULL);
CRYPTO_set_locking_callback(openssl_lock);
@ -96,6 +98,8 @@ void ff_tls_init(void)
gnutls_global_init();
#endif
avpriv_unlock_avformat();
return 0;
}
void ff_tls_deinit(void)

View File

@ -78,7 +78,7 @@ extern int ff_network_inited_globally;
int ff_network_init(void);
void ff_network_close(void);
void ff_tls_init(void);
int ff_tls_init(void);
void ff_tls_deinit(void);
int ff_network_wait_fd(int fd, int write);

View File

@ -175,7 +175,8 @@ static int tls_open(URLContext *h, const char *uri, int flags)
const char *proxy_path;
int use_proxy;
ff_tls_init();
if ((ret = ff_tls_init()) < 0)
return ret;
if (c->listen)
snprintf(opts, sizeof(opts), "?listen=1");

View File

@ -4095,7 +4095,8 @@ int avformat_network_init(void)
ff_network_inited_globally = 1;
if ((ret = ff_network_init()) < 0)
return ret;
ff_tls_init();
if ((ret = ff_tls_init()) < 0)
return ret;
#endif
return 0;
}