mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0023846: A crash on reading of a VRML file with wrong indices
A check of indices. Test cases for issue CR23846
This commit is contained in:
parent
78fdb3d3fe
commit
14b04bd216
@ -93,11 +93,18 @@ const Handle(TopoDS_TShape)& VrmlData_IndexedFaceSet::TShape ()
|
||||
NCollection_DataMap <int, int> mapNodeId;
|
||||
|
||||
// Count non-degenerated triangles
|
||||
const int nNodes = myCoords->Length();
|
||||
for (i = 0; i < (int)myNbPolygons; i++) {
|
||||
const Standard_Integer * arrIndice;
|
||||
if (Polygon(i, arrIndice) == 3) {
|
||||
if (arrIndice[0] < 0)
|
||||
//Check indices for out of bound
|
||||
if (arrIndice[0] < 0 ||
|
||||
arrIndice[0] >= nNodes ||
|
||||
arrIndice[1] >= nNodes ||
|
||||
arrIndice[2] >= nNodes)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
const gp_XYZ aVec[2] = {
|
||||
arrNodes[arrIndice[1]] - arrNodes[arrIndice[0]],
|
||||
arrNodes[arrIndice[2]] - arrNodes[arrIndice[0]]
|
||||
@ -148,7 +155,10 @@ const Handle(TopoDS_TShape)& VrmlData_IndexedFaceSet::TShape ()
|
||||
for (i = 0; i < (int)myNbPolygons; i++) {
|
||||
const Standard_Integer * arrIndice;
|
||||
if (Polygon (i, arrIndice) == 3)
|
||||
if (arrIndice[0] >= 0) // check to avoid previously skipped faces
|
||||
if (arrIndice[0] >= 0 &&
|
||||
arrIndice[0] < nNodes &&
|
||||
arrIndice[1] < nNodes &&
|
||||
arrIndice[2] < nNodes) // check to avoid previously skipped faces
|
||||
aTriangles(++nTri).Set (mapNodeId(arrIndice[0]),
|
||||
mapNodeId(arrIndice[1]),
|
||||
mapNodeId(arrIndice[2]));
|
||||
@ -179,7 +189,11 @@ const Handle(TopoDS_TShape)& VrmlData_IndexedFaceSet::TShape ()
|
||||
for (i = 0; i < (int)myNbPolygons; i++)
|
||||
{
|
||||
const Standard_Integer * arrNodes;
|
||||
if (Polygon(i, arrNodes) == 3 && arrNodes[0] >= 0) // check to avoid previously skipped faces
|
||||
if (Polygon(i, arrNodes) == 3 &&
|
||||
arrNodes[0] >= 0 &&
|
||||
arrNodes[0] < nNodes &&
|
||||
arrNodes[1] < nNodes &&
|
||||
arrNodes[2] < nNodes) // check to avoid previously skipped faces
|
||||
{
|
||||
const Standard_Integer * arrIndice;
|
||||
if (IndiceNormals(i, arrIndice) == 3) {
|
||||
|
11
tests/bugs/xde/bug23846
Executable file
11
tests/bugs/xde/bug23846
Executable file
@ -0,0 +1,11 @@
|
||||
puts "================"
|
||||
puts "OCC23846"
|
||||
puts "================"
|
||||
puts ""
|
||||
######################################################################################
|
||||
# A crash on reading of a VRML file with wrong indices
|
||||
######################################################################################
|
||||
|
||||
loadvrml result [locate_data_file T00000112_0000.wrl]
|
||||
|
||||
set 3dviewer 1
|
Loading…
x
Reference in New Issue
Block a user