Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 4 Feb 2009 19:56:37 +0000 (UTC)
From:      Robert Watson <rwatson@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r188122 - head/sys/security/audit
Message-ID:  <200902041956.n14JubCQ089511@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rwatson
Date: Wed Feb  4 19:56:37 2009
New Revision: 188122
URL: http://svn.freebsd.org/changeset/base/188122

Log:
  Eliminate the local variable 'ape' in audit_pipe_kqread(), as it's only
  used for an assertion that we don't really need anymore.
  
  MFC after:	1 week
  Reported by:	Christoph Mallon <christoph dot mallon at gmx dot de>

Modified:
  head/sys/security/audit/audit_pipe.c

Modified: head/sys/security/audit/audit_pipe.c
==============================================================================
--- head/sys/security/audit/audit_pipe.c	Wed Feb  4 19:43:08 2009	(r188121)
+++ head/sys/security/audit/audit_pipe.c	Wed Feb  4 19:56:37 2009	(r188122)
@@ -1077,18 +1077,13 @@ audit_pipe_kqfilter(struct cdev *dev, st
 static int
 audit_pipe_kqread(struct knote *kn, long hint)
 {
-	struct audit_pipe_entry *ape;
 	struct audit_pipe *ap;
 
 	ap = (struct audit_pipe *)kn->kn_hook;
 	KASSERT(ap != NULL, ("audit_pipe_kqread: ap == NULL"));
-
 	AUDIT_PIPE_LOCK_ASSERT(ap);
 
 	if (ap->ap_qlen != 0) {
-		ape = TAILQ_FIRST(&ap->ap_queue);
-		KASSERT(ape != NULL, ("audit_pipe_kqread: ape == NULL"));
-
 		kn->kn_data = ap->ap_qbyteslen - ap->ap_qoffset;
 		return (1);
 	} else {



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