mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 10:22:59 +00:00
[BOOTLIB] Fix 64 bit issues (#433)
This commit is contained in:
parent
8bbbab534a
commit
3be4081607
18 changed files with 85 additions and 58 deletions
|
@ -41,7 +41,7 @@ FileIoCopyParentDirectoryPath (
|
|||
_In_ PWCHAR FilePath
|
||||
)
|
||||
{
|
||||
ULONG PathSize, PathSizeWithNull;
|
||||
SIZE_T PathSize, PathSizeWithNull;
|
||||
PWCHAR Backslash, ParentCopy;
|
||||
|
||||
PathSize = wcslen(FilePath) * sizeof(WCHAR);
|
||||
|
@ -81,7 +81,7 @@ FileIoCopyFileName (
|
|||
)
|
||||
{
|
||||
PWCHAR Separator, FileCopy;
|
||||
ULONG PathSize;
|
||||
SIZE_T PathSize;
|
||||
|
||||
Separator = wcsrchr(FilePath, '\\');
|
||||
if (!Separator)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue