From 97dd057702d167559cdaee86eb0b1a455d925168 Mon Sep 17 00:00:00 2001 From: Monty Date: Mon, 12 Aug 2019 15:47:24 +0300 Subject: Fixed issues when running mtr with --valgrind - Note that some issues was also fixed in 10.2 and 10.4. I also fixed them here to be able to continue with making 10.5 valgrind safe again - Disable connection threads warnings when doing shutdown --- vio/viosslfactories.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'vio') diff --git a/vio/viosslfactories.c b/vio/viosslfactories.c index 4a31ebd1798..edd40c2d60c 100644 --- a/vio/viosslfactories.c +++ b/vio/viosslfactories.c @@ -436,7 +436,9 @@ new_VioSSLAcceptorFd(const char *key_file, const char *cert_file, void free_vio_ssl_acceptor_fd(struct st_VioSSLFd *fd) { + DBUG_ENTER("free_vio_ssl_acceptor_fd"); SSL_CTX_free(fd->ssl_context); my_free(fd); + DBUG_VOID_RETURN; } #endif /* HAVE_OPENSSL */ -- cgit v1.2.1