kwo pushed a commit to branch master. http://git.enlightenment.org/e16/e16.git/commit/?id=79879a81196aebb6556776ba6df63246bb2a6909
commit 79879a81196aebb6556776ba6df63246bb2a6909 Author: Kim Woelders <k...@woelders.dk> Date: Sun Oct 11 07:44:06 2020 +0200 Fix memory leak after failed execvp() --- src/actions.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/actions.c b/src/actions.c index 1252f1d4..2ebd3d65 100644 --- a/src/actions.c +++ b/src/actions.c @@ -39,6 +39,8 @@ Eexec(const char *cmd) lst = StrlistFromString(cmd, ' ', &num); execvp(lst[0], lst); + + StrlistFree(lst, num); } static void --