1
0
Fork 0

tools: PCI: Fix fd leakage

We should close fd before the return of run_test.

Fixes: 3f2ed81348 ("tools: PCI: Add a userspace tool to test PCI endpoint")
Signed-off-by: Hewenliang <hewenliang4@huawei.com>
Signed-off-by: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Acked-by: Kishon Vijay Abraham I <kishon@ti.com>
alistair/sunxi64-5.5-dsi
Hewenliang 2019-10-25 21:35:55 -04:00 committed by Lorenzo Pieralisi
parent 35a82a3795
commit 3c379a59b4
1 changed files with 1 additions and 0 deletions

View File

@ -129,6 +129,7 @@ static int run_test(struct pci_test *test)
}
fflush(stdout);
close(fd);
return (ret < 0) ? ret : 1 - ret; /* return 0 if test succeeded */
}