From d23db2848813a9d872e1d71272e7f41df7d0d01c Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Fri, 28 Sep 2012 10:54:07 +0100 Subject: [PATCH] [tls] Fix potential memory leak Signed-off-by: Michael Brown --- src/net/tls.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/net/tls.c b/src/net/tls.c index 52a83393..4ad131c8 100644 --- a/src/net/tls.c +++ b/src/net/tls.c @@ -1749,6 +1749,7 @@ static int tls_new_record ( struct tls_session *tls, unsigned int type, list_del ( &iobuf->list ); if ( ! list_empty ( rx_data ) ) { DBGC ( tls, "TLS %p overlength non-data record\n", tls ); + free_iob ( iobuf ); return -EINVAL_NON_DATA; }