mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 04:31:50 +00:00
tools: iio: Set caller's ci_array pointer to NULL after free
On error, caller's ci_array is freed and set to NULL to avoid potential double free if some other user of this code is not sufficiently careful. Counter is reset to zero for consistency. Signed-off-by: Joo Aun Saw <jasaw@dius.com.au> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
This commit is contained in:
parent
bdb25b0af8
commit
6b20f40679
@ -526,6 +526,8 @@ error_cleanup_array:
|
||||
free((*ci_array)[i].generic_name);
|
||||
}
|
||||
free(*ci_array);
|
||||
*ci_array = NULL;
|
||||
*counter = 0;
|
||||
error_close_dir:
|
||||
if (dp)
|
||||
if (closedir(dp) == -1)
|
||||
|
Loading…
Reference in New Issue
Block a user