diff options
author | unknown <msvensson@neptunus.(none)> | 2006-05-08 17:14:06 +0200 |
---|---|---|
committer | unknown <msvensson@neptunus.(none)> | 2006-05-08 17:14:06 +0200 |
commit | bc324937327f480e0dff314480884aea8397869d (patch) | |
tree | 6f4ee6d9633aea38f1767615f02b4dbdfe74c49f /vio/test-sslclient.c | |
parent | c593d1f1cac06e9e8a549febaa13d72f90eec4f4 (diff) | |
download | mariadb-git-bc324937327f480e0dff314480884aea8397869d.tar.gz |
Remove valgrind and compiler warnings
Add function 'vio_end' that will cleanup resources allocated by vio and the components it uses.
include/violite.h:
Import patch warnings.patch
libmysql/libmysql.c:
Import patch warnings.patch
sql/mysqld.cc:
Import patch warnings.patch
vio/test-ssl.c:
Import patch warnings.patch
vio/test-sslclient.c:
Import patch warnings.patch
vio/test-sslserver.c:
Import patch warnings.patch
vio/vio.c:
Import patch warnings.patch
vio/viosslfactories.c:
Import patch warnings.patch
Diffstat (limited to 'vio/test-sslclient.c')
-rw-r--r-- | vio/test-sslclient.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vio/test-sslclient.c b/vio/test-sslclient.c index 3811ba0fb6a..49d6768c884 100644 --- a/vio/test-sslclient.c +++ b/vio/test-sslclient.c @@ -46,7 +46,7 @@ main( int argc __attribute__((unused)), { char client_key[] = "../SSL/client-key.pem", client_cert[] = "../SSL/client-cert.pem"; char ca_file[] = "../SSL/cacert.pem", *ca_path = 0, *cipher=0; - struct st_VioSSLConnectorFd* ssl_connector=0; + struct st_VioSSLFd* ssl_connector= 0; struct sockaddr_in sa; Vio* client_vio=0; int err; |