Changed: #1051 ForceRemovePatchCategories is using a bad index
This commit is contained in:
parent
5d5702bd5e
commit
4602044d4c
1 changed files with 10 additions and 4 deletions
|
@ -1132,14 +1132,20 @@ void CPatchManager::readDescFile(sint32 nVersion)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
CBNPFileSet &bnpFS = const_cast<CBNPFileSet &>(DescFile.getFiles());
|
||||||
|
|
||||||
for(cat = 0; cat < DescFile.getCategories().categoryCount();)
|
for(cat = 0; cat < DescFile.getCategories().categoryCount();)
|
||||||
{
|
{
|
||||||
|
const CBNPCategory &bnpCat = DescFile.getCategories().getCategory(cat);
|
||||||
|
|
||||||
if (std::find(ForceRemovePatchCategories.begin(), ForceRemovePatchCategories.end(),
|
if (std::find(ForceRemovePatchCategories.begin(), ForceRemovePatchCategories.end(),
|
||||||
DescFile.getCategories().getCategory(cat).getName()) != ForceRemovePatchCategories.end())
|
bnpCat.getName()) != ForceRemovePatchCategories.end())
|
||||||
{
|
{
|
||||||
std::string fileName = DescFile.getCategories().getFile(cat);
|
for(uint file = 0; file < bnpCat.fileCount(); ++file)
|
||||||
CBNPFileSet &bnpFS = const_cast<CBNPFileSet &>(DescFile.getFiles());
|
{
|
||||||
bnpFS.removeFile(fileName);
|
std::string fileName = bnpCat.getFile(file);
|
||||||
|
bnpFS.removeFile(fileName);
|
||||||
|
}
|
||||||
const_cast<CBNPCategorySet &>(DescFile.getCategories()).deleteCategory(cat);
|
const_cast<CBNPCategorySet &>(DescFile.getCategories()).deleteCategory(cat);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue