aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/kern_exec.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/kern/kern_exec.c')
-rw-r--r--sys/kern/kern_exec.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/kern/kern_exec.c b/sys/kern/kern_exec.c
index 2936e246f706..01ec7de5d3c1 100644
--- a/sys/kern/kern_exec.c
+++ b/sys/kern/kern_exec.c
@@ -398,7 +398,9 @@ do_execve(struct thread *td, struct image_args *args, struct mac *mac_p,
static const char fexecv_proc_title[] = "(fexecv)";
imgp = &image_params;
+#ifdef KTRACE
kiop = NULL;
+#endif
/*
* Lock the process and set the P_INEXEC flag to indicate that
@@ -788,8 +790,6 @@ interpret:
* we do not regain any tracing during a possible block.
*/
setsugid(p);
- kiop = NULL;
-
#ifdef KTRACE
kiop = ktrprocexec(p);
#endif
@@ -946,7 +946,9 @@ exec_fail:
*/
if (oldtextvp != NULL)
vrele(oldtextvp);
+#ifdef KTRACE
ktr_io_params_free(kiop);
+#endif
pargs_drop(oldargs);
pargs_drop(newargs);
if (oldsigacts != NULL)