From 7823ef73e51bb81a17dcb306aff89016d4ce258f Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Fri, 15 Oct 2010 18:55:52 +0100 Subject: [PATCH] istream-concat: Fixed a memory leak. --- src/lib/istream-concat.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/istream-concat.c b/src/lib/istream-concat.c index 39a2cc6873..ab7425770e 100644 --- a/src/lib/istream-concat.c +++ b/src/lib/istream-concat.c @@ -31,6 +31,7 @@ static void i_stream_concat_destroy(struct iostream_private *stream) for (i = 0; cstream->input[i] != NULL; i++) i_stream_unref(&cstream->input[i]); + i_free(cstream->istream.w_buffer); } static void -- 2.47.3