In ioctl_client.c, fd is not closed before return, thus
it will cause fd leakage problem.
Signed-off-by: Zhiqiang Liu <liuzhiqiang26@huawei.com>
Signed-off-by: Haotian Li <lihaotian9@huawei.com>
{
size_t size;
int fd;
+ int ret = 0;
if (argc < 2) {
fprintf(stderr, "%s", usage);
if (argc == 2) {
if (ioctl(fd, FIOC_GET_SIZE, &size)) {
perror("ioctl");
- return 1;
+ ret = 1;
+ goto out;
}
printf("%zu\n", size);
} else {
size = strtoul(argv[2], NULL, 0);
if (ioctl(fd, FIOC_SET_SIZE, &size)) {
perror("ioctl");
- return 1;
+ ret = 1;
+ goto out;
}
}
- return 0;
+out:
+ close(fd);
+ return ret;
}