Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 27 Jan 2008 15:59:02 GMT
From:      Robert Watson <rwatson@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 134204 for review
Message-ID:  <200801271559.m0RFx2wp001017@repoman.freebsd.org>

index | next in thread | raw e-mail

http://perforce.freebsd.org/chv.cgi?CH=134204

Change 134204 by rwatson@rwatson_freebsd_capabilities on 2008/01/27 15:58:19

	binvp should always be initialized as part of the normal run path,
	so don't NULL up front in order to catch the future introduction
	of cases where it isn't.

Affected files ...

.. //depot/projects/trustedbsd/capabilities/src/sys/kern/kern_exec.c#6 edit

Differences ...

==== //depot/projects/trustedbsd/capabilities/src/sys/kern/kern_exec.c#6 (text+ko) ====

@@ -315,7 +315,7 @@
 	struct vnode *tracevp = NULL;
 	struct ucred *tracecred = NULL;
 #endif
-	struct vnode *textvp = NULL, *binvp = NULL;
+	struct vnode *textvp = NULL, *binvp;
 	int credential_changing;
 	int vfslocked;
 	int textset;


help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200801271559.m0RFx2wp001017>