From 1ce5acccf5186e70424826d4f22cee3a29ac114e Mon Sep 17 00:00:00 2001 From: "Anand V. Avati" Date: Tue, 14 Apr 2009 14:51:16 +0530 Subject: FREE arena->iobufs in iobuf_arena_destory Signed-off-by: Anand V. Avati --- libglusterfs/src/iobuf.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libglusterfs/src') diff --git a/libglusterfs/src/iobuf.c b/libglusterfs/src/iobuf.c index a4c6918d7..5ef5d2848 100644 --- a/libglusterfs/src/iobuf.c +++ b/libglusterfs/src/iobuf.c @@ -82,6 +82,8 @@ __iobuf_arena_destroy_iobufs (struct iobuf_arena *iobuf_arena) list_del_init (&iobuf->list); iobuf++; } + + FREE (iobuf_arena->iobufs); } -- cgit