Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4a805e86 authored by David S. Miller's avatar David S. Miller
Browse files

[COMPAT]: Fixup compat_do_execve()



Missing acct_update_integrals() and update_mem_hiwater() calls
compared to it's native counterpart.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 1619cca2
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -44,6 +44,8 @@
#include <linux/nfsd/syscall.h>
#include <linux/personality.h>
#include <linux/rwsem.h>
#include <linux/acct.h>
#include <linux/mm.h>

#include <net/sock.h>		/* siocdevprivate_ioctl */

@@ -1487,6 +1489,8 @@ int compat_do_execve(char * filename,

		/* execve success */
		security_bprm_free(bprm);
		acct_update_integrals(current);
		update_mem_hiwater(current);
		kfree(bprm);
		return retval;
	}