diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2022-03-27 23:26:47 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2022-03-27 23:26:47 +0200 |
commit | 29cbaa3e60dfe48e341a3a5ce1c2d8f3d9e9667c (patch) | |
tree | 313f2b5436ced50e76a706d0edd41386305db75d /samples | |
parent | Merge tag 'mailbox-v5.18' of git://git.linaro.org/landing-teams/working/fujit... (diff) | |
parent | landlock: Use square brackets around "landlock-ruleset" (diff) | |
download | linux-29cbaa3e60dfe48e341a3a5ce1c2d8f3d9e9667c.tar.xz linux-29cbaa3e60dfe48e341a3a5ce1c2d8f3d9e9667c.zip |
Merge tag 'landlock-5.18-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/mic/linux
Pull landlock updates from Mickaël Salaün:
"These two commits contain a minor fix for the sandboxer sample, and a
Landlock ruleset FD name standardization"
* tag 'landlock-5.18-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/mic/linux:
landlock: Use square brackets around "landlock-ruleset"
samples/landlock: Fix path_list memory leak
Diffstat (limited to 'samples')
-rw-r--r-- | samples/landlock/sandboxer.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/samples/landlock/sandboxer.c b/samples/landlock/sandboxer.c index 7a15910d2171..8859fc193542 100644 --- a/samples/landlock/sandboxer.c +++ b/samples/landlock/sandboxer.c @@ -134,6 +134,7 @@ static int populate_ruleset( ret = 0; out_free_name: + free(path_list); free(env_path_name); return ret; } |