Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
a736ac3f
Commit
a736ac3f
authored
Dec 30, 2006
by
Reinhard Karcher
Committed by
Alexandre Julliard
Jan 02, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Fix NtQueryDirectoryFile handling of short names on vfat filesystems.
parent
92faf7aa
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
directory.c
dlls/ntdll/directory.c
+3
-3
No files found.
dlls/ntdll/directory.c
View file @
a736ac3f
...
...
@@ -1513,13 +1513,13 @@ NTSTATUS WINAPI NtQueryDirectoryFile( HANDLE handle, HANDLE event,
if
((
cwd
=
open
(
"."
,
O_RDONLY
))
!=
-
1
&&
fchdir
(
fd
)
!=
-
1
)
{
if
(
mask
&&
!
mempbrkW
(
mask
->
Buffer
,
wszWildcards
,
mask
->
Length
/
sizeof
(
WCHAR
)
)
&&
read_directory_stat
(
fd
,
io
,
buffer
,
length
,
single_entry
,
mask
,
restart_scan
)
!=
-
1
)
goto
done
;
#ifdef VFAT_IOCTL_READDIR_BOTH
if
((
read_directory_vfat
(
fd
,
io
,
buffer
,
length
,
single_entry
,
mask
,
restart_scan
))
!=
-
1
)
goto
done
;
#endif
if
(
mask
&&
!
mempbrkW
(
mask
->
Buffer
,
wszWildcards
,
mask
->
Length
/
sizeof
(
WCHAR
)
)
&&
read_directory_stat
(
fd
,
io
,
buffer
,
length
,
single_entry
,
mask
,
restart_scan
)
!=
-
1
)
goto
done
;
#ifdef USE_GETDENTS
if
((
read_directory_getdents
(
fd
,
io
,
buffer
,
length
,
single_entry
,
mask
,
restart_scan
))
!=
-
1
)
goto
done
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment