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:
parent
1f99e08822
commit
cbaac5de6d
@ -447,8 +447,8 @@ Standard_Boolean TopOpeBRepTool_REGUW::InitBlock()
|
|||||||
const TopOpeBRepTool_connexity& cmu = mymapvEds.FindFromKey(vmu);
|
const TopOpeBRepTool_connexity& cmu = mymapvEds.FindFromKey(vmu);
|
||||||
Standard_Boolean mult = cmu.IsMultiple();
|
Standard_Boolean mult = cmu.IsMultiple();
|
||||||
if (!mult) {
|
if (!mult) {
|
||||||
myListVmultiple.Remove(itmu);
|
|
||||||
mymapvmultiple.Remove(vmu);
|
mymapvmultiple.Remove(vmu);
|
||||||
|
myListVmultiple.Remove(itmu);
|
||||||
}
|
}
|
||||||
else itmu.Next();
|
else itmu.Next();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user