[PATCH] x86: boot/compressed fix resource leak

From: Andre Bartke
Date: Tue May 31 2011 - 05:51:36 EST


In case fread() fails, we should call fclose
and release the resource properly. Also while at it,
fixed brace coding style issue.

Signed-off-by: Andre Bartke <andre.bartke@xxxxxxxxx>
---
arch/x86/boot/compressed/mkpiggy.c | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/arch/x86/boot/compressed/mkpiggy.c b/arch/x86/boot/compressed/mkpiggy.c
index 46a8238..33b85be 100644
--- a/arch/x86/boot/compressed/mkpiggy.c
+++ b/arch/x86/boot/compressed/mkpiggy.c
@@ -58,13 +58,12 @@ int main(int argc, char *argv[])
return 1;
}

-
- if (fseek(f, -4L, SEEK_END)) {
+ if (fseek(f, -4L, SEEK_END))
perror(argv[1]);
- }

if (fread(&olen, sizeof(olen), 1, f) != 1) {
perror(argv[1]);
+ fclose(f);
return 1;
}

--
1.7.5.2

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/