mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 18:02:05 +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:
parent
062d01efe2
commit
80e1facc71
1 changed files with 1 additions and 1 deletions
|
@ -608,7 +608,7 @@ IopGetBusTypeGuidIndex(LPGUID BusTypeGuid)
|
||||||
/* Try to find a match */
|
/* Try to find a match */
|
||||||
if (RtlCompareMemory(BusTypeGuid,
|
if (RtlCompareMemory(BusTypeGuid,
|
||||||
&IopBusTypeGuidList->Guids[i],
|
&IopBusTypeGuidList->Guids[i],
|
||||||
sizeof(GUID)))
|
sizeof(GUID)) == sizeof(GUID))
|
||||||
{
|
{
|
||||||
/* Found it */
|
/* Found it */
|
||||||
FoundIndex = i;
|
FoundIndex = i;
|
||||||
|
|
Loading…
Reference in a new issue