Fix memory leak.
diff --git a/ssl/s3_lib.c b/ssl/s3_lib.c
index 9653de6..0f30d2d 100644
--- a/ssl/s3_lib.c
+++ b/ssl/s3_lib.c
@@ -2989,6 +2989,10 @@
 #ifndef OPENSSL_NO_SRP
 	SSL_SRP_CTX_free(s);
 #endif
+#ifndef OPENSSL_NO_TLSEXT
+	if (s->s3->tlsext_authz_client_types != NULL)
+		OPENSSL_free(s->s3->tlsext_authz_client_types);
+#endif
 	OPENSSL_cleanse(s->s3,sizeof *s->s3);
 	OPENSSL_free(s->s3);
 	s->s3=NULL;