Temporary add stubs to the Linux emulation layer which calls the existing hook.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG FreeBSD src repository
- Lint
Lint Not Applicable - Unit
Tests Not Applicable
Event Timeline
sys/kern/kern_exec.c | ||
---|---|---|
1167 | At this point, error is KERN_SUCCESS, which is some Mach error code. We never assume that it has zero value. Please replace this fragment by e.g. the following return (sv->sv_onexec != NULL ? sv->sv_onexec(p, imgp) : 0); |