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
1 changed files with 1 additions and 1 deletions

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 */