projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
afa0580
)
fix memory leak
author
Dr. Stephen Henson
<steve@openssl.org>
Tue, 11 Sep 2012 13:45:42 +0000
(13:45 +0000)
committer
Dr. Stephen Henson
<steve@openssl.org>
Tue, 11 Sep 2012 13:45:42 +0000
(13:45 +0000)
apps/s_server.c
patch
|
blob
|
history
diff --git
a/apps/s_server.c
b/apps/s_server.c
index d1d3ccc5bce3872bfd58035c8b83aba0afc3918d..1f1f317d419ac2df29be38117bdd03994fbfb21a 100644
(file)
--- a/
apps/s_server.c
+++ b/
apps/s_server.c
@@
-1550,6
+1550,12
@@
end:
if (dpass)
OPENSSL_free(dpass);
#ifndef OPENSSL_NO_TLSEXT
+ if (tlscstatp.host)
+ OPENSSL_free(tlscstatp.host);
+ if (tlscstatp.port)
+ OPENSSL_free(tlscstatp.port);
+ if (tlscstatp.path)
+ OPENSSL_free(tlscstatp.path);
if (ctx2 != NULL) SSL_CTX_free(ctx2);
if (s_cert2)
X509_free(s_cert2);