mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
0029478: Crash because bSplineSurfaceWithKnots is NULL.
Modified the method void RWStepGeom_RWBSplineSurfaceWithKnotsAndRationalBSplineSurface::ReadStep Added processing B spline surface with knots and rational B spline surface with empty data in the name field Added test
This commit is contained in:
parent
296dbe8cc8
commit
5dd92c395a
@ -261,15 +261,21 @@ void RWStepGeom_RWBSplineSurfaceWithKnotsAndRationalBSplineSurface::ReadStep
|
||||
|
||||
// --- Instance of plex component RepresentationItem ---
|
||||
|
||||
if (!data->CheckNbParams(num,1,ach,"representation_item")) return;
|
||||
|
||||
// --- field : name ---
|
||||
|
||||
Handle(TCollection_HAsciiString) aName;
|
||||
//szv#4:S4163:12Mar99 `Standard_Boolean stat14 =` not needed
|
||||
data->ReadString (num,1,"name",ach,aName);
|
||||
|
||||
// num = data->NextForComplex(num);
|
||||
if (!data->CheckNbParams(num, 1, ach, "representation_item"))
|
||||
{
|
||||
aName = new TCollection_HAsciiString("");
|
||||
}
|
||||
else
|
||||
{
|
||||
//szv#4:S4163:12Mar99 `Standard_Boolean stat14 =` not needed
|
||||
data->ReadString(num, 1, "name", ach, aName);
|
||||
}
|
||||
|
||||
// num = data->NextForComplex(num);
|
||||
data->NamedForComplex("SURFACE", "SRFC",num0,num,ach);
|
||||
|
||||
//--- Initialisation of the red entity ---
|
||||
|
11
tests/bugs/step/bug29478
Normal file
11
tests/bugs/step/bug29478
Normal file
@ -0,0 +1,11 @@
|
||||
puts "============"
|
||||
puts "OCC29478"
|
||||
puts "============"
|
||||
puts ""
|
||||
#####################################################
|
||||
# Crash because bSplineSurfaceWithKnots is NULL
|
||||
#####################################################
|
||||
|
||||
set aFilePath [locate_data_file bug29478.stp]
|
||||
testreadstep "$aFilePath" orig
|
||||
checkshape orig
|
Loading…
x
Reference in New Issue
Block a user