Commit ce7b04c6 authored by Peter Meerwald's avatar Peter Meerwald Committed by Jonathan Cameron

iio staging: fix resource leak in _write_sysfs_int()

Signed-off-by: default avatarPeter Meerwald <pmeerw@pmeerw.net>
Signed-off-by: default avatarJonathan Cameron <jic23@kernel.org>
parent a4d429e3
...@@ -524,6 +524,7 @@ inline int _write_sysfs_int(char *filename, char *basedir, int val, int verify) ...@@ -524,6 +524,7 @@ inline int _write_sysfs_int(char *filename, char *basedir, int val, int verify)
goto error_free; goto error_free;
} }
fscanf(sysfsfp, "%d", &test); fscanf(sysfsfp, "%d", &test);
fclose(sysfsfp);
if (test != val) { if (test != val) {
printf("Possible failure in int write %d to %s%s\n", printf("Possible failure in int write %d to %s%s\n",
val, val,
...@@ -573,6 +574,7 @@ int _write_sysfs_string(char *filename, char *basedir, char *val, int verify) ...@@ -573,6 +574,7 @@ int _write_sysfs_string(char *filename, char *basedir, char *val, int verify)
goto error_free; goto error_free;
} }
fscanf(sysfsfp, "%s", temp); fscanf(sysfsfp, "%s", temp);
fclose(sysfsfp);
if (strcmp(temp, val) != 0) { if (strcmp(temp, val) != 0) {
printf("Possible failure in string write of %s " printf("Possible failure in string write of %s "
"Should be %s " "Should be %s "
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment