tools: hv: Fix file descriptor leaks

Close "fd" file descriptor when is goes out of scope so it does
not leak.

Signed-off-by: Tomas Hozza <thozza@redhat.com>
Acked-by:  K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Tomas Hozza 2013-05-22 14:54:33 +02:00 committed by Greg Kroah-Hartman
parent f14e600a3b
commit fca597558e
1 changed files with 5 additions and 1 deletions

View File

@ -257,12 +257,15 @@ static int kvp_file_init(void)
filep = fopen(fname, "re");
if (!filep)
if (!filep) {
close(fd);
return 1;
}
record = malloc(alloc_unit * num_blocks);
if (record == NULL) {
fclose(filep);
close(fd);
return 1;
}
for (;;) {
@ -286,6 +289,7 @@ static int kvp_file_init(void)
num_blocks);
if (record == NULL) {
fclose(filep);
close(fd);
return 1;
}
continue;