diff --git a/Changelog.md b/Changelog.md index e72794e251bb6d0f7b839b56ff5f85c335acbca6..abfecef1f0a774d22a15ebaac79e7fc0fb62a7ea 100644 --- a/Changelog.md +++ b/Changelog.md @@ -7,6 +7,7 @@ OpenCore Changelog - Provided optional unsafe fast file logging (suitable only for firmware with a fully compliant FAT32 driver) - Fixed incorrect OSBundleLibraries_x86_64 handling during cacheless injection - Changed RsaTool not to link against system ssl on macOS +- Fixed crash during cacheless injection when kext blocking is enabled #### v0.8.2 - Fixed `AppleCpuPmCfgLock` on macOS 13 diff --git a/Library/OcAppleKernelLib/CachelessContext.c b/Library/OcAppleKernelLib/CachelessContext.c index ebb66a4ab298077ff782e9107da9acc3a8e7cc93..589b4212f0f6c8c13cc2f9f90238264c9bfe040e 100644 --- a/Library/OcAppleKernelLib/CachelessContext.c +++ b/Library/OcAppleKernelLib/CachelessContext.c @@ -1613,9 +1613,8 @@ CachelessContextHookBuiltin ( Status = PatcherBlockKext (&Patcher); DEBUG (( EFI_ERROR (Status) ? DEBUG_WARN : DEBUG_INFO, - "OCAK: Cacheless blocker result for %a (%a) - %r\n", + "OCAK: Cacheless blocker result for %a - %r\n", PatchedKext->Identifier, - KextPatch->Patch.Comment, Status )); }