mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[LDR] Fix some mis-assignations
Brought to you by WinOCM See issue #6353 for more details. svn path=/trunk/; revision=52515
This commit is contained in:
parent
afc124a8c2
commit
3657f4ff79
1 changed files with 3 additions and 3 deletions
|
@ -118,7 +118,7 @@ LdrpUpdateLoadCount3(IN PLDR_DATA_TABLE_ENTRY LdrEntry,
|
|||
Entry->LoadCount--;
|
||||
break;
|
||||
case LDRP_UPDATE_PIN:
|
||||
Entry->LoadCount == -1;
|
||||
Entry->LoadCount = -1;
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -162,7 +162,7 @@ LdrpUpdateLoadCount3(IN PLDR_DATA_TABLE_ENTRY LdrEntry,
|
|||
Entry->LoadCount--;
|
||||
break;
|
||||
case LDRP_UPDATE_PIN:
|
||||
Entry->LoadCount == -1;
|
||||
Entry->LoadCount = -1;
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -231,7 +231,7 @@ LdrpUpdateLoadCount3(IN PLDR_DATA_TABLE_ENTRY LdrEntry,
|
|||
Entry->LoadCount--;
|
||||
break;
|
||||
case LDRP_UPDATE_PIN:
|
||||
Entry->LoadCount == -1;
|
||||
Entry->LoadCount = -1;
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue