mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
0027070: Segfault when transferring HLR-created shapes via STEPControl_Writer
Added protection against null shape on writing: status IFSelect_RetVoid will be returned in such case (instead of access violation)
This commit is contained in:
parent
1167d6cc50
commit
0a0eec807d
@ -458,7 +458,10 @@ IFSelect_ReturnStatus XSControl_WorkSession::TransferWriteShape (const TopoDS_Sh
|
|||||||
IFSelect_ReturnStatus status;
|
IFSelect_ReturnStatus status;
|
||||||
if (myController.IsNull()) return IFSelect_RetError;
|
if (myController.IsNull()) return IFSelect_RetError;
|
||||||
const Handle(Interface_InterfaceModel) &model = Model();
|
const Handle(Interface_InterfaceModel) &model = Model();
|
||||||
if (model.IsNull()) return IFSelect_RetVoid;
|
if (model.IsNull() || shape.IsNull())
|
||||||
|
{
|
||||||
|
return IFSelect_RetVoid;
|
||||||
|
}
|
||||||
|
|
||||||
status = myTransferWriter->TransferWriteShape (model,shape);
|
status = myTransferWriter->TransferWriteShape (model,shape);
|
||||||
// qui s occupe de tout, try/catch inclus
|
// qui s occupe de tout, try/catch inclus
|
||||||
|
8
tests/bugs/step/bug27070
Normal file
8
tests/bugs/step/bug27070
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
puts "# ======================================================================="
|
||||||
|
puts "# 0027070: Segfault when transferring HLR-created shapes via STEPControl_Writer"
|
||||||
|
puts "# ======================================================================="
|
||||||
|
puts ""
|
||||||
|
|
||||||
|
puts "Check that writing null shape does not produce access violation"
|
||||||
|
puts "REQUIRED ALL: Error: translation failed, status = 0"
|
||||||
|
stepwrite a a
|
Loading…
x
Reference in New Issue
Block a user