diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libssl/d1_lib.c | 4 | ||||
-rw-r--r-- | lib/libssl/src/ssl/d1_lib.c | 4 |
2 files changed, 6 insertions, 2 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; */ diff --git a/lib/libssl/src/ssl/d1_lib.c b/lib/libssl/src/ssl/d1_lib.c index 4ee3e361681..c417c295df8 100644 --- a/lib/libssl/src/ssl/d1_lib.c +++ b/lib/libssl/src/ssl/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; */ |