mirror of
https://github.com/torvalds/linux.git
synced 2024-12-27 13:22:23 +00:00
staging: greybus: loopback_test: fix device-name leak
All the device names were being always leaked. Also, illegal free was being called upon namelist[n] which was coincidentally NULL. The pointer to dirent structures must be individually freed before freeing the pointer array. Coccinelle Script: @@ expression arr,ex1,ex2; @@ for(ex1 = 0; ex1 < ex2; ex1++) { <... arr[ - ex2 + ex1 ] ...> } Signed-off-by: Gargi Sharma <gs051095@gmail.com> Reviewed by: Johan Hovold <johan@kernel.org> Acked-by: Julia Lawall <julia.lawall@lip6.fr> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
95ee706e9a
commit
fea3860d7d
@ -636,7 +636,7 @@ int find_loopback_devices(struct loopback_test *t)
|
||||
ret = 0;
|
||||
done:
|
||||
for (i = 0; i < n; i++)
|
||||
free(namelist[n]);
|
||||
free(namelist[i]);
|
||||
free(namelist);
|
||||
baddir:
|
||||
return ret;
|
||||
|
Loading…
Reference in New Issue
Block a user