diff options
author | Loganaden Velvindron <logan@cvs.openbsd.org> | 2014-06-11 13:19:54 +0000 |
---|---|---|
committer | Loganaden Velvindron <logan@cvs.openbsd.org> | 2014-06-11 13:19:54 +0000 |
commit | a27f7df1d4449ddcc27377ebeed5d861bf955a76 (patch) | |
tree | 090fad28a847d5a54a4eb61fda4a95ed573a15b9 | |
parent | a40861167d7e66f8ccaafe81ef8376f2662e1a3c (diff) |
Fix memory leak: free s if calloc fails.
(From Jonas Maebe)
OK from beck@
-rw-r--r-- | lib/libssl/d1_lib.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libssl/d1_lib.c b/lib/libssl/d1_lib.c index 4ee3e361681..c417c295df8 100644 --- a/lib/libssl/d1_lib.c +++ b/lib/libssl/d1_lib.c @@ -104,8 +104,10 @@ dtls1_new(SSL *s) if (!ssl3_new(s)) return (0); - if ((d1 = calloc(1, sizeof *d1)) == NULL) + if ((d1 = calloc(1, sizeof *d1)) == NULL) { + ssl3_free(s); return (0); + } /* d1->handshake_epoch=0; */ |