mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 13:13:00 +00:00
[UDFS] Fix 64 bit issues
This commit is contained in:
parent
be97da34ac
commit
c334c17d69
23 changed files with 257 additions and 246 deletions
|
@ -1111,7 +1111,7 @@ unwind_3:
|
|||
if(NT_SUCCESS(RC)) {
|
||||
|
||||
int8* buff;
|
||||
uint32 len;
|
||||
SIZE_T len;
|
||||
PUDF_FILE_INFO CfgFileInfo = NULL;
|
||||
|
||||
RC = UDFOpenFile__(Vcb, FALSE, TRUE, &LocalPath, RootFcb->FileInfo, &CfgFileInfo, NULL);
|
||||
|
@ -1686,7 +1686,7 @@ UDFIsPathnameValid(
|
|||
// get next path part...
|
||||
TmpBuffer = PathName.Buffer;
|
||||
PathName.Buffer = UDFDissectName(PathName.Buffer,&(CurName.Length) );
|
||||
PathName.Length -= (USHORT)((ULONG)(PathName.Buffer) - (ULONG)TmpBuffer);
|
||||
PathName.Length -= (USHORT)((ULONG_PTR)(PathName.Buffer) - (ULONG_PTR)TmpBuffer);
|
||||
CurName.Buffer = PathName.Buffer - CurName.Length;
|
||||
CurName.Length *= sizeof(WCHAR);
|
||||
CurName.MaximumLength -= CurName.Length;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue