1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-01 12:19:28 +00:00

Restore memory space separation (RFMEM) for vfork() after

shell imgact memory clobbering fixed
This commit is contained in:
Andrey A. Chernov 1997-04-23 22:13:18 +00:00
parent 5cf3d12ca5
commit 0eaa559cbf
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=25116

View File

@ -98,7 +98,7 @@ vfork(p, uap, retval)
struct vfork_args *uap;
int retval[];
{
return (fork1(p, (RFFDG|RFPROC|RFPPWAIT), retval));
return (fork1(p, (RFFDG|RFPROC|RFPPWAIT|RFMEM), retval));
}
/* ARGSUSED */