mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-16 08:04:55 -04:00
Incorrect Fixed=true attribute of sections fixed
This commit is contained in:
parent
df3f832762
commit
72116d01c0
1 changed files with 2 additions and 3 deletions
|
@ -1906,7 +1906,7 @@ USTATUS FfsParser::parseCommonSectionHeader(const UByteArray & section, const UI
|
|||
|
||||
// Add tree item
|
||||
if (!preparse) {
|
||||
index = model->addItem(Types::Section, type, name, UString(), info, header, body, UByteArray(), true, parsingDataToUByteArray(pdata), parent);
|
||||
index = model->addItem(Types::Section, type, name, UString(), info, header, body, UByteArray(), false, parsingDataToUByteArray(pdata), parent);
|
||||
}
|
||||
return U_SUCCESS;
|
||||
}
|
||||
|
@ -1973,7 +1973,7 @@ USTATUS FfsParser::parseCompressedSectionHeader(const UByteArray & section, cons
|
|||
|
||||
// Add tree item
|
||||
if (!preparse) {
|
||||
index = model->addItem(Types::Section, sectionHeader->Type, name, UString(), info, header, body, UByteArray(), true, parsingDataToUByteArray(pdata), parent);
|
||||
index = model->addItem(Types::Section, sectionHeader->Type, name, UString(), info, header, body, UByteArray(), false, parsingDataToUByteArray(pdata), parent);
|
||||
}
|
||||
return U_SUCCESS;
|
||||
}
|
||||
|
@ -2342,7 +2342,6 @@ USTATUS FfsParser::parsePostcodeSectionHeader(const UByteArray & section, const
|
|||
return U_SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
USTATUS FfsParser::parseSectionBody(const UModelIndex & index)
|
||||
{
|
||||
// Sanity check
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue