summaryrefslogtreecommitdiffstats
path: root/ssl/d1_srvr.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2014-12-12 11:03:00 +0000
committerMatt Caswell <matt@openssl.org>2014-12-13 00:02:20 +0000
commit24097938ad19acaaac00f4e8549bfe1a976d662d (patch)
tree0e8f3532f285395b7828c2663b2b63847efddec4 /ssl/d1_srvr.c
parentc3f22253b139793ff3b91ff7e6969e180cf06815 (diff)
Fixed memory leak if BUF_MEM_grow fails
Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Kurt Roeckx <kurt@openssl.org>
Diffstat (limited to 'ssl/d1_srvr.c')
-rw-r--r--ssl/d1_srvr.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ssl/d1_srvr.c b/ssl/d1_srvr.c
index aef38bb754..0cdc51be23 100644
--- a/ssl/d1_srvr.c
+++ b/ssl/d1_srvr.c
@@ -251,6 +251,7 @@ int dtls1_accept(SSL *s)
}
if (!BUF_MEM_grow(buf,SSL3_RT_MAX_PLAIN_LENGTH))
{
+ BUF_MEM_free(buf);
ret= -1;
goto end;
}