mirror of
https://github.com/reactos/reactos.git
synced 2025-05-08 03:07:05 +00:00
FdTable field in the process data is no more a pointer
svn path=/trunk/; revision=2680
This commit is contained in:
parent
eb3d1a3163
commit
a681b85839
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: fcntl.c,v 1.2 2002/02/20 09:17:57 hyperion Exp $
|
/* $Id: fcntl.c,v 1.3 2002/03/07 06:03:11 hyperion Exp $
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
|
@ -36,7 +36,7 @@ int fcntl(int fildes, int cmd, ...)
|
||||||
__PdxAcquirePdataLock();
|
__PdxAcquirePdataLock();
|
||||||
|
|
||||||
/* get the file descriptors table */
|
/* get the file descriptors table */
|
||||||
pftFdTable = __PdxGetProcessData()->FdTable;
|
pftFdTable = &__PdxGetProcessData()->FdTable;
|
||||||
|
|
||||||
/* fildes is an invalid, closed or uninitialized descriptor */
|
/* fildes is an invalid, closed or uninitialized descriptor */
|
||||||
if
|
if
|
||||||
|
|
Loading…
Reference in a new issue