mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 12:13:10 +00:00
[FASTFAT]
- Don't check for leading "." char in a filename, because it's valid in case of LFN. The driver is already quite broken, so it can't get more broken if this assert is commented out. Fixes assertion in "kernel32_winetest module". svn path=/trunk/; revision=53722
This commit is contained in:
parent
606aa872f2
commit
b4b9d26324
1 changed files with 2 additions and 1 deletions
|
@ -29,7 +29,8 @@ static ULONG vfatNameHash(ULONG hash, PUNICODE_STRING NameU)
|
||||||
PWCHAR curr;
|
PWCHAR curr;
|
||||||
register WCHAR c;
|
register WCHAR c;
|
||||||
|
|
||||||
ASSERT(NameU->Buffer[0] != L'.');
|
// LFN could start from "."
|
||||||
|
//ASSERT(NameU->Buffer[0] != L'.');
|
||||||
curr = NameU->Buffer;
|
curr = NameU->Buffer;
|
||||||
last = NameU->Buffer + NameU->Length / sizeof(WCHAR);
|
last = NameU->Buffer + NameU->Length / sizeof(WCHAR);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue