[*] Win32 bug fix

This commit is contained in:
Reece Wilson 2023-12-22 12:55:08 +00:00
parent 17d113b74d
commit bd6b70f215

View File

@ -215,6 +215,11 @@ namespace Aurora::IO::FS
goto out;
}
if (length.QuadPart == 0)
{
return true;
}
writeView = buffer.GetOrAllocateLinearWriteable(length.QuadPart);
if (!writeView)
{