mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-31 23:38:22 -04:00
Do not overwrite extracted files in UEFIExtract
This commit is contained in:
parent
dccc335886
commit
d23c1a682a
2 changed files with 18 additions and 4 deletions
|
@ -37,7 +37,7 @@ public:
|
|||
|
||||
static const UINT8 IgnoreSectionType = 0xFF;
|
||||
|
||||
explicit FfsDumper(TreeModel * treeModel) : model(treeModel), dumped(false) {}
|
||||
explicit FfsDumper(TreeModel * treeModel) : model(treeModel), dumped(false), counter(0) {}
|
||||
~FfsDumper() {};
|
||||
|
||||
USTATUS dump(const QModelIndex & root, const QString & path, const DumpMode dumpMode = DUMP_CURRENT, const UINT8 sectionType = IgnoreSectionType, const QString & guid = QString());
|
||||
|
@ -46,5 +46,6 @@ private:
|
|||
USTATUS recursiveDump(const QModelIndex & root, const QString & path, const DumpMode dumpMode, const UINT8 sectionType, const QString & guid);
|
||||
TreeModel* model;
|
||||
bool dumped;
|
||||
int counter;
|
||||
};
|
||||
#endif // FFSDUMPER_H
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue