diff options
author | unknown <gluh@eagle.intranet.mysql.r18.ru> | 2005-11-21 16:09:26 +0400 |
---|---|---|
committer | unknown <gluh@eagle.intranet.mysql.r18.ru> | 2005-11-21 16:09:26 +0400 |
commit | 31ea9f945d2acfa8e0dec18df8ae7094d7ca62b0 (patch) | |
tree | b333cc8af1bc5e2584d134438936662fc0e10da2 /vio/vio.c | |
parent | 1dfaaba874c5f02222e149466743abb0c268c5d3 (diff) | |
download | mariadb-git-31ea9f945d2acfa8e0dec18df8ae7094d7ca62b0.tar.gz |
Fix for bug#14780 memory leak for mysql 4.1.14 with openssl enabled
Diffstat (limited to 'vio/vio.c')
-rw-r--r-- | vio/vio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vio/vio.c b/vio/vio.c index 427c52e29d3..6174acd7024 100644 --- a/vio/vio.c +++ b/vio/vio.c @@ -83,7 +83,7 @@ void vio_reset(Vio* vio, enum enum_vio_type type, #ifdef HAVE_OPENSSL if (type == VIO_TYPE_SSL) { - vio->viodelete =vio_ssl_delete; + vio->viodelete =vio_delete; vio->vioerrno =vio_ssl_errno; vio->read =vio_ssl_read; vio->write =vio_ssl_write; |