From 60a62788d48e1d45fcb75cf0bcc7d375c42b83ba Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Fri, 19 Nov 2010 15:31:22 +0000 Subject: [PATCH] fish: Fix memory leak in handling of encrypted volumes by -i option. This fixes a memory leak introduced by commit a232e62dcf508517a32b9a8d7e4529e827be721b. --- fish/inspect.c | 1 + 1 file changed, 1 insertion(+) diff --git a/fish/inspect.c b/fish/inspect.c index cc3916b..2817112 100644 --- a/fish/inspect.c +++ b/fish/inspect.c @@ -204,6 +204,7 @@ do_decrypt (void) need_rescan = 1; } + free (type); } free_strings (partitions); -- 1.8.3.1