mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 20:59:54 +00:00
Fixed read_directory_getdents for large directories (found by Rein
Klazes).
This commit is contained in:
parent
e849a56673
commit
50c1a6b959
@ -794,7 +794,12 @@ static int read_directory_getdents( int fd, IO_STATUS_BLOCK *io, void *buffer, U
|
||||
}
|
||||
old_pos = de->d_off;
|
||||
/* move on to the next entry */
|
||||
de = (KERNEL_DIRENT64 *)((char *)de + de->d_reclen);
|
||||
if (res > 0) de = (KERNEL_DIRENT64 *)((char *)de + de->d_reclen);
|
||||
else
|
||||
{
|
||||
res = getdents64( fd, data, size );
|
||||
de = data;
|
||||
}
|
||||
}
|
||||
|
||||
if (last_info) last_info->NextEntryOffset = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user