From 72116d01c0a783dd6ab6f442f29b75d5b3f320cb Mon Sep 17 00:00:00 2001 From: Nikolaj Schlej Date: Mon, 11 Jul 2016 09:35:01 +0200 Subject: [PATCH] Incorrect Fixed=true attribute of sections fixed --- common/ffsparser.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/common/ffsparser.cpp b/common/ffsparser.cpp index 5a46605..e93ce64 100644 --- a/common/ffsparser.cpp +++ b/common/ffsparser.cpp @@ -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