mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-15 23:54:45 -04:00
Revert "Fix FfsParser issues found by fuzzing"
This reverts commit b8567d32cc
.
This commit is contained in:
parent
6aeb713488
commit
aa3e790fb1
8 changed files with 64 additions and 81 deletions
|
@ -133,7 +133,7 @@ USTATUS guidDatabaseExportToFile(const UString & outPath, GuidDatabase & db)
|
|||
if (!outputFile)
|
||||
return U_FILE_OPEN;
|
||||
for (GuidDatabase::iterator it = db.begin(); it != db.end(); it++) {
|
||||
std::string guid(guidToUString((const char*)&it->first, false).toLocal8Bit());
|
||||
std::string guid(guidToUString (it->first, false).toLocal8Bit());
|
||||
std::string name(it->second.toLocal8Bit());
|
||||
outputFile << guid << ',' << name << '\n';
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue