ssl: clear the OpenSSL locking function

We're freeing the memory which holds the locks so we must make sure that
the locking function doesn't try to use it.
This commit is contained in:
Carlos Martín Nieto 2014-11-01 10:26:09 +01:00
parent 264d74fd40
commit e083657771

View File

@ -66,6 +66,7 @@ void openssl_locking_function(int mode, int n, const char *file, int line)
static void shutdown_ssl(void)
{
CRYPTO_set_locking_callback(NULL);
git__free(openssl_locks);
}
#endif