mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
avformat/network: Check for av_malloc* failures in ff_tls_init()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
9d7ae72725
commit
7620d48f2e
@ -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)
|
||||
|
@ -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);
|
||||
|
@ -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");
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user