mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 01:24:38 +00:00
added a TODO
svn path=/trunk/; revision=2699
This commit is contained in:
parent
65b82fb4d2
commit
6d05bb6b7a
1 changed files with 2 additions and 1 deletions
|
@ -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]);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue