mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
[KS]
Fix misuse of UlongToPtr svn path=/trunk/; revision=56325
This commit is contained in:
parent
de8f033910
commit
06314bbad2
1 changed files with 1 additions and 1 deletions
|
@ -877,7 +877,7 @@ KspHandleDataIntersection(
|
|||
break;
|
||||
}
|
||||
|
||||
DataRange = UlongToPtr(PtrToUlong(DataRange) + DataRange->FormatSize);
|
||||
DataRange = (PKSDATARANGE)((PUCHAR)DataRange + DataRange->FormatSize);
|
||||
/* FIXME make sure its 64 bit aligned */
|
||||
ASSERT(((ULONG_PTR)DataRange & 0x7) == 0);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue