diff options
author | Monty <monty@mariadb.org> | 2019-08-12 15:47:24 +0300 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2019-08-23 22:03:54 +0200 |
commit | 97dd057702d167559cdaee86eb0b1a455d925168 (patch) | |
tree | 08d714f224348c2829e5e78b9f0dd4b447485f45 /vio | |
parent | b444b6b9100f8fff0d5b19597e21f35fe4c9d9cb (diff) | |
download | mariadb-git-97dd057702d167559cdaee86eb0b1a455d925168.tar.gz |
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
Diffstat (limited to 'vio')
-rw-r--r-- | vio/viosslfactories.c | 2 |
1 files changed, 2 insertions, 0 deletions
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 */ |