mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 12:23:25 +00:00
- Bugzilla Bug 1340: fix of an incorrect RtlCompareMemory call in ntoskrnl (by w3seek)
svn path=/trunk/; revision=21524
This commit is contained in:
@@ -608,7 +608,7 @@ IopGetBusTypeGuidIndex(LPGUID BusTypeGuid)
|
||||
/* Try to find a match */
|
||||
if (RtlCompareMemory(BusTypeGuid,
|
||||
&IopBusTypeGuidList->Guids[i],
|
||||
sizeof(GUID)))
|
||||
sizeof(GUID)) == sizeof(GUID))
|
||||
{
|
||||
/* Found it */
|
||||
FoundIndex = i;
|
||||
|
||||
Reference in New Issue
Block a user