Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 31 Aug 2016 12:29:04 +0000 (UTC)
From:      Mateusz Guzik <mjg@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r305124 - head/sys/sys
Message-ID:  <201608311229.u7VCT4aB010457@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mjg
Date: Wed Aug 31 12:29:04 2016
New Revision: 305124
URL: https://svnweb.freebsd.org/changeset/base/305124

Log:
  fd: effectively revert r305091
  
  Turns out fd_lastfile can survive being -1 for some processes, giving
  incorrect results with the cast.
  
  Noted by: cem

Modified:
  head/sys/sys/filedesc.h

Modified: head/sys/sys/filedesc.h
==============================================================================
--- head/sys/sys/filedesc.h	Wed Aug 31 11:55:31 2016	(r305123)
+++ head/sys/sys/filedesc.h	Wed Aug 31 12:29:04 2016	(r305124)
@@ -201,7 +201,7 @@ fget_locked(struct filedesc *fdp, int fd
 
 	FILEDESC_LOCK_ASSERT(fdp);
 
-	if ((u_int)fd > fdp->fd_lastfile)
+	if (fd < 0 || fd > fdp->fd_lastfile)
 		return (NULL);
 
 	return (fdp->fd_ofiles[fd].fde_file);
@@ -213,7 +213,7 @@ fdeget_locked(struct filedesc *fdp, int 
 
 	FILEDESC_LOCK_ASSERT(fdp);
 
-	if ((u_int)fd > fdp->fd_lastfile)
+	if (fd < 0 || fd > fdp->fd_lastfile)
 		return (NULL);
 
 	return (&fdp->fd_ofiles[fd]);



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