diff options
author | Matt Caswell <matt@openssl.org> | 2014-11-25 14:36:00 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2014-11-26 11:10:21 +0100 |
commit | 8a35dbb6d89a16d792b79b157b3e89443639ec94 (patch) | |
tree | f226d18d416a24cd49f9d190d02f6f608da2bdf3 /ssl/ssl_locl.h | |
parent | Corrected comments in ssl.h about SSLv23_method and friends (diff) | |
download | openssl-8a35dbb6d89a16d792b79b157b3e89443639ec94.tar.xz openssl-8a35dbb6d89a16d792b79b157b3e89443639ec94.zip |
Fixed memory leak due to incorrect freeing of DTLS reassembly bit mask
PR#3608
Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'ssl/ssl_locl.h')
-rw-r--r-- | ssl/ssl_locl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ssl/ssl_locl.h b/ssl/ssl_locl.h index 0600f375b9..c5de1930f4 100644 --- a/ssl/ssl_locl.h +++ b/ssl/ssl_locl.h @@ -1219,6 +1219,7 @@ int dtls1_is_timer_expired(SSL *s); void dtls1_double_timeout(SSL *s); int dtls1_send_newsession_ticket(SSL *s); unsigned int dtls1_min_mtu(void); +void dtls1_hm_fragment_free(hm_fragment *frag); /* some client-only functions */ int ssl3_client_hello(SSL *s); |