OpenCorePkg new commit.

This commit is contained in:
jief666 2021-04-23 17:54:59 +03:00
parent 4e28b79449
commit afa09ccb4e
2 changed files with 2 additions and 2 deletions

@ -1 +1 @@
Subproject commit 444a41b15eee65123be0b47b2f4813c6b11a0520
Subproject commit 2378f2b5ee97ed31333d49881620af447e2b3095

View File

@ -144,7 +144,7 @@ const TagArray* TagArray::arrayElementAt(size_t idx, const XString8& currentTag)
const TagStruct* tag = elementAt(idx);
if ( !tag->isArray() ) {
#ifdef DEBUG
panic("MALFORMED PLIST in '%s' : TagArray::dictElementAt(%zu) -> trying to get a array element at %zu, but element is %s\n", currentTag.c_str(), idx, idx, tag->getTypeAsXString8().c_str());
panic("MALFORMED PLIST in '%s' : TagArray::arrayElementAt(%zu) -> trying to get a array element at %zu, but element is %s\n", currentTag.c_str(), idx, idx, tag->getTypeAsXString8().c_str());
#else
return 0;
#endif