summaryrefslogtreecommitdiff
path: root/vio
diff options
context:
space:
mode:
authorgluh@mysql.com/eagle.(none) <>2007-02-01 18:00:24 +0400
committergluh@mysql.com/eagle.(none) <>2007-02-01 18:00:24 +0400
commit010dc0b55c1255b75ca6ddd1bd058c157624b9df (patch)
tree377c350f251e9ea221dc51f671e25b865691db6d /vio
parent658777d8080a500918c3b5815cdafbf0e746c1e7 (diff)
downloadmariadb-git-010dc0b55c1255b75ca6ddd1bd058c157624b9df.tar.gz
Valgrind error fixes
Notes: This patch doesn't fix all issues in the tree and we need jani's fix for that This patch shoud not be merged into 5.0
Diffstat (limited to 'vio')
-rw-r--r--vio/viosslfactories.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/vio/viosslfactories.c b/vio/viosslfactories.c
index 46306cf48bb..1ac5d96d158 100644
--- a/vio/viosslfactories.c
+++ b/vio/viosslfactories.c
@@ -289,6 +289,8 @@ new_VioSSLConnectorFd(const char* key_file,
DBUG_RETURN(ptr);
ctor_failure:
DBUG_PRINT("exit", ("there was an error"));
+ if (ptr->ssl_context)
+ SSL_CTX_free(ptr->ssl_context);
my_free((gptr)ptr,MYF(0));
DBUG_RETURN(0);
}
@@ -390,6 +392,8 @@ new_VioSSLAcceptorFd(const char *key_file,
ctor_failure:
DBUG_PRINT("exit", ("there was an error"));
+ if (ptr->ssl_context)
+ SSL_CTX_free(ptr->ssl_context);
my_free((gptr) ptr,MYF(0));
DBUG_RETURN(0);
}