aboutsummaryrefslogtreecommitdiffstats
path: root/tools/iio/iio_utils.c
diff options
context:
space:
mode:
authorHartmut Knaack <knaack.h@gmx.de>2015-05-31 14:39:43 +0200
committerJonathan Cameron <jic23@kernel.org>2015-05-31 17:19:12 +0100
commit66dd08fde06e5ad6f0f86c7a780d60973e9d9cf0 (patch)
tree5ed7619e6e51be344481a6794f26ea59520aac83 /tools/iio/iio_utils.c
parenttools:iio:generic_buffer: free dev_dir_name on exit (diff)
downloadlinux-dev-66dd08fde06e5ad6f0f86c7a780d60973e9d9cf0.tar.xz
linux-dev-66dd08fde06e5ad6f0f86c7a780d60973e9d9cf0.zip
tools:iio:iio_utils: free scan_el_dir on exit
In the error path, the string scan_el_dir got freed, while it was missing when build_channel_array() finished without errors. Signed-off-by: Hartmut Knaack <knaack.h@gmx.de> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'tools/iio/iio_utils.c')
-rw-r--r--tools/iio/iio_utils.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/iio/iio_utils.c b/tools/iio/iio_utils.c
index 6f6452167b67..f879ad7b88bc 100644
--- a/tools/iio/iio_utils.c
+++ b/tools/iio/iio_utils.c
@@ -403,6 +403,7 @@ int build_channel_array(const char *device_dir,
}
closedir(dp);
+ free(scan_el_dir);
/* reorder so that the array is in index order */
bsort_channel_array_by_index(ci_array, *counter);