1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0030985: Modeling Algorithms - heap-use-after-free reported by Clang address sanitizer in TopOpeBRepTool_REGUW::InitBlock()

Code is corrected to avoid use of reference to a shape removed from the list after that removal
This commit is contained in:
abv 2019-09-20 07:55:05 +03:00 committed by bugmaster
parent 1f99e08822
commit cbaac5de6d

View File

@ -447,8 +447,8 @@ Standard_Boolean TopOpeBRepTool_REGUW::InitBlock()
const TopOpeBRepTool_connexity& cmu = mymapvEds.FindFromKey(vmu);
Standard_Boolean mult = cmu.IsMultiple();
if (!mult) {
myListVmultiple.Remove(itmu);
mymapvmultiple.Remove(vmu);
myListVmultiple.Remove(itmu);
}
else itmu.Next();
}