mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
- Fixed a bug in vfatGetNextDirEntry to get the first entry
from a directory, usually the '.' for a sub directory. svn path=/trunk/; revision=6374
This commit is contained in:
parent
b73b1eaf89
commit
91a9d5d368
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: direntry.c,v 1.15 2003/10/11 17:51:56 hbirr Exp $
|
||||
/* $Id: direntry.c,v 1.16 2003/10/19 17:07:58 hbirr Exp $
|
||||
*
|
||||
*
|
||||
* FILE: DirEntry.c
|
||||
|
@ -169,7 +169,7 @@ NTSTATUS vfatGetNextDirEntry(PVOID * pContext,
|
|||
}
|
||||
}
|
||||
|
||||
if (!ENTRY_END(fatDirEntry) &&
|
||||
if (Back && !ENTRY_END(fatDirEntry) &&
|
||||
(ENTRY_DELETED(fatDirEntry) || !ENTRY_LONG(fatDirEntry)))
|
||||
{
|
||||
DirContext->DirIndex++;
|
||||
|
|
Loading…
Reference in a new issue