In test_syscalls.c, several funcs have potential fd leakage
problems. This patch will fix them.
Signed-off-by: Zhiqiang Liu <liuzhiqiang26@huawei.com>
Signed-off-by: Haotian Li <lihaotian9@huawei.com>
res = close(fd_in);
if (res == -1) {
PERROR("close");
+ close(fd_out);
return -1;
}
res = close(fd_out);
return -1;
}
res = check_nonexist(testfile);
- if (res == -1)
+ if (res == -1) {
+ close(fd);
return -1;
+ }
res = write(fd, data, datalen);
if (res == -1) {
PERROR("write");
}
res = check_type(testsock, S_IFSOCK);
- if (res == -1)
+ if (res == -1) {
+ close(fd);
return -1;
+ }
err += check_nlink(testsock, 1);
close(fd);
res = unlink(testsock);