]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
x86/boot: Close opened file descriptor
authorJiri Slaby <jslaby@suse.cz>
Wed, 19 Jun 2013 07:53:03 +0000 (09:53 +0200)
committerIngo Molnar <mingo@kernel.org>
Wed, 19 Jun 2013 11:32:19 +0000 (13:32 +0200)
During build we open a file, read that but do not close it. Fix
that by sticking fclose() at the right place.

Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Link: http://lkml.kernel.org/r/1371628383-11216-1-git-send-email-jslaby@suse.cz
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: x86@kernel.org
arch/x86/boot/tools/build.c

index 94c54465002003e34af8f6fb3d14a1be839fdeba..c941d6a8887f8099cb31edabd9a6be80d11b8a1d 100644 (file)
@@ -243,6 +243,7 @@ static void parse_zoffset(char *fname)
        c = fread(buf, 1, sizeof(buf) - 1, file);
        if (ferror(file))
                die("read-error on `zoffset.h'");
+       fclose(file);
        buf[c] = 0;
 
        p = (char *)buf;