You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
[PATCH] get rid of leak in compat_execve()
Even though copy_compat_strings() doesn't cache the pages, copy_strings_kernel() and stuff indirectly called by e.g. ->load_binary() is doing that, so we need to drop the cache contents in the end. [found by WANG Cong <wangcong@zeuux.org>] Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
+2
-2
@@ -1405,7 +1405,7 @@ int compat_do_execve(char * filename,
|
||||
/* execve success */
|
||||
security_bprm_free(bprm);
|
||||
acct_update_integrals(current);
|
||||
kfree(bprm);
|
||||
free_bprm(bprm);
|
||||
return retval;
|
||||
}
|
||||
|
||||
@@ -1424,7 +1424,7 @@ out_file:
|
||||
}
|
||||
|
||||
out_kfree:
|
||||
kfree(bprm);
|
||||
free_bprm(bprm);
|
||||
|
||||
out_ret:
|
||||
return retval;
|
||||
|
||||
Reference in New Issue
Block a user