From 6d05bb6b7ad17c84f0e8e25069718f95d52df60c Mon Sep 17 00:00:00 2001 From: "KJK::Hyperion" Date: Mon, 11 Mar 2002 20:48:08 +0000 Subject: [PATCH] added a TODO svn path=/trunk/; revision=2699 --- posix/lib/psxdll/misc/fdtable.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/posix/lib/psxdll/misc/fdtable.c b/posix/lib/psxdll/misc/fdtable.c index c87a3dc5366..e9c8d6e1361 100644 --- a/posix/lib/psxdll/misc/fdtable.c +++ b/posix/lib/psxdll/misc/fdtable.c @@ -1,4 +1,4 @@ -/* $Id: fdtable.c,v 1.2 2002/02/20 09:17:57 hyperion Exp $ +/* $Id: fdtable.c,v 1.3 2002/03/11 20:48:08 hyperion Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory @@ -227,6 +227,7 @@ __fildes_t *__fdtable_entry_get(__fdtable_t * fdtable, int fileno) if(fileno >= fdtable->AllocatedDescriptors) return (0); + /* TODO: check the fileno against the bitmap */ return (&fdtable->Descriptors[fileno]); } -- 2.17.1