mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-23 11:35:19 +01:00
Wrong test of Prop instead of arrayProp.
This commit is contained in:
parent
1fe7cc1cfc
commit
8276e8b4f9
@ -1134,7 +1134,7 @@ FillinKextPatches (IN OUT KERNEL_AND_KEXT_PATCHES *Patches,
|
|||||||
* KernelToPatch is an array of dict
|
* KernelToPatch is an array of dict
|
||||||
*/
|
*/
|
||||||
arrayProp = DictPointer->arrayPropertyForKey("KernelToPatch");
|
arrayProp = DictPointer->arrayPropertyForKey("KernelToPatch");
|
||||||
if (Prop != NULL) {
|
if (arrayProp != NULL) {
|
||||||
INTN i;
|
INTN i;
|
||||||
INTN Count = arrayProp->arrayContent().size();
|
INTN Count = arrayProp->arrayContent().size();
|
||||||
//delete old and create new
|
//delete old and create new
|
||||||
@ -1260,7 +1260,7 @@ FillinKextPatches (IN OUT KERNEL_AND_KEXT_PATCHES *Patches,
|
|||||||
* BootPatches is an array of dict
|
* BootPatches is an array of dict
|
||||||
*/
|
*/
|
||||||
arrayProp = DictPointer->arrayPropertyForKey("BootPatches");
|
arrayProp = DictPointer->arrayPropertyForKey("BootPatches");
|
||||||
if (Prop != NULL) {
|
if (arrayProp != NULL) {
|
||||||
INTN i;
|
INTN i;
|
||||||
INTN Count = arrayProp->arrayContent().size();
|
INTN Count = arrayProp->arrayContent().size();
|
||||||
//delete old and create new
|
//delete old and create new
|
||||||
@ -2228,7 +2228,7 @@ GetEarlyUserSettings (
|
|||||||
}
|
}
|
||||||
// Secure boot white list
|
// Secure boot white list
|
||||||
const TagArray* arrayProp = BootDict->arrayPropertyForKey("WhiteList");
|
const TagArray* arrayProp = BootDict->arrayPropertyForKey("WhiteList");
|
||||||
if (Prop != NULL) {
|
if (arrayProp != NULL) {
|
||||||
INTN i;
|
INTN i;
|
||||||
INTN Count = arrayProp->arrayContent().size();
|
INTN Count = arrayProp->arrayContent().size();
|
||||||
if (Count > 0) {
|
if (Count > 0) {
|
||||||
|
Loading…
Reference in New Issue
Block a user