mirror of https://git.ffmpeg.org/ffmpeg.git
network: Do not leave context locked on error
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit 45340f9fc7
)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
2ac7a0d999
commit
485f53548b
|
@ -77,8 +77,10 @@ int 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)
|
||||
if (!openssl_mutexes) {
|
||||
avpriv_unlock_avformat();
|
||||
return AVERROR(ENOMEM);
|
||||
}
|
||||
for (i = 0; i < CRYPTO_num_locks(); i++)
|
||||
pthread_mutex_init(&openssl_mutexes[i], NULL);
|
||||
CRYPTO_set_locking_callback(openssl_lock);
|
||||
|
|
Loading…
Reference in New Issue