svn commit: r344233 - head/sys/kern

Mark Johnston markj at FreeBSD.org
Sun Feb 17 16:56:43 UTC 2019


Author: markj
Date: Sun Feb 17 16:56:41 2019
New Revision: 344233
URL: https://svnweb.freebsd.org/changeset/base/344233

Log:
  Remove a write-only variable orphaned by r340677.

Modified:
  head/sys/kern/sys_pipe.c

Modified: head/sys/kern/sys_pipe.c
==============================================================================
--- head/sys/kern/sys_pipe.c	Sun Feb 17 16:43:44 2019	(r344232)
+++ head/sys/kern/sys_pipe.c	Sun Feb 17 16:56:41 2019	(r344233)
@@ -379,9 +379,7 @@ void
 pipe_dtor(struct pipe *dpipe)
 {
 	struct pipe *peer;
-	ino_t ino;
 
-	ino = dpipe->pipe_ino;
 	peer = (dpipe->pipe_state & PIPE_NAMED) != 0 ? dpipe->pipe_peer : NULL;
 	funsetown(&dpipe->pipe_sigio);
 	pipeclose(dpipe);


More information about the svn-src-all mailing list