From: John Hodge Date: Sun, 23 Jun 2013 06:46:36 +0000 (+0800) Subject: Kernel/VFS - Disabled use of .Size in directories X-Git-Tag: rel0.15~416 X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;h=00ff4fddc81bf6567a7c6de0685a579c245e0928;p=tpg%2Facess2.git Kernel/VFS - Disabled use of .Size in directories --- diff --git a/KernelLand/Kernel/vfs/dir.c b/KernelLand/Kernel/vfs/dir.c index cd451213..24175397 100644 --- a/KernelLand/Kernel/vfs/dir.c +++ b/KernelLand/Kernel/vfs/dir.c @@ -178,10 +178,12 @@ int VFS_ReadDir(int FD, char *Dest) return 0; } + #if 0 if(h->Node->Size != (Uint64)-1 && h->Position >= h->Node->Size) { //LEAVE('i', 0); return 0; } + #endif do { rv = h->Node->Type->ReadDir(h->Node, h->Position, Dest);