mirror of
https://github.com/thenickdude/KVM-Opencore.git
synced 2026-03-02 03:40:14 +00:00
Update OpenCore to 0.6.8
This commit is contained in:
@@ -1,27 +0,0 @@
|
||||
diff --git a/Staging/VBoxHfs/fsw_hfs.c b/Staging/VBoxHfs/fsw_hfs.c
|
||||
index a5b3565d..9ca3d0f1 100644
|
||||
--- a/Staging/VBoxHfs/fsw_hfs.c
|
||||
+++ b/Staging/VBoxHfs/fsw_hfs.c
|
||||
@@ -1042,20 +1042,20 @@ fsw_hfs_cmpf_catkey (BTreeKey *btkey1, BTreeKey *btkey2)
|
||||
|
||||
for (ac = 0; ac == 0 && apos < ckey1nlen; apos++) {
|
||||
ac = be16_to_cpu (p1[apos]);
|
||||
- ac = fsw_to_lower (ac);
|
||||
+ ac = ac ? fsw_to_lower (ac) : 0xFFFF;
|
||||
}
|
||||
|
||||
/* get next valid character from ckey2 */
|
||||
|
||||
for (bc = 0; bc == 0 && bpos < ckey2nlen; bpos++) {
|
||||
bc = p2[bpos];
|
||||
- bc = fsw_to_lower (bc);
|
||||
+ bc = bc ? fsw_to_lower (bc) : 0xFFFF;
|
||||
}
|
||||
|
||||
if (ac != bc)
|
||||
break;
|
||||
|
||||
- if (ac == 0)
|
||||
+ if (bpos == ckey1nlen)
|
||||
return 0;
|
||||
}
|
||||
Submodule src/AppleALC updated: 5d49bac43e...3c2f6315e6
2
src/Lilu
2
src/Lilu
Submodule src/Lilu updated: 575bd85c75...5aeba9f981
Submodule src/MacKernelSDK updated: e0733fae03...2b584e8e20
Submodule src/OcBinaryData updated: fc76b32b34...ccf3d0c367
Submodule src/OpenCorePkg updated: e8cc05f5c3...5cd223f03d
Submodule src/VirtualSMC updated: 3a8366d9a4...2a7455daf6
Reference in New Issue
Block a user