From 5a0ac2e5ef482016e00575a7dce83f52c1704732 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Sat, 16 Oct 2010 00:23:20 +0100 Subject: [PATCH] istream-concat: Fixed another memory leak. --- src/lib/istream-concat.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/istream-concat.c b/src/lib/istream-concat.c index ab7425770e..40a0c71aec 100644 --- a/src/lib/istream-concat.c +++ b/src/lib/istream-concat.c @@ -31,6 +31,8 @@ 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->input); + i_free(cstream->input_size); i_free(cstream->istream.w_buffer); } -- 2.47.3