From 8d7e01c02726209a2ca3142f59faf622d43e21e4 Mon Sep 17 00:00:00 2001 From: Nikolaj Schlej Date: Fri, 21 Feb 2025 12:15:01 +0700 Subject: [PATCH] Make sure to initialize counterUncData --- UEFIExtract/ffsdumper.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UEFIExtract/ffsdumper.h b/UEFIExtract/ffsdumper.h index 85d619a..007cf11 100644 --- a/UEFIExtract/ffsdumper.h +++ b/UEFIExtract/ffsdumper.h @@ -39,7 +39,7 @@ public: static const UINT8 IgnoreSectionType = 0xFF; explicit FfsDumper(TreeModel * treeModel) : model(treeModel), dumped(false), - counterHeader(0), counterBody(0), counterRaw(0), counterInfo(0) {} + counterHeader(0), counterBody(0), counterUncData(0), counterRaw(0), counterInfo(0) {} ~FfsDumper() {}; USTATUS dump(const UModelIndex & root, const UString & path, const DumpMode dumpMode = DUMP_CURRENT, const UINT8 sectionType = IgnoreSectionType, const UString & guid = UString());