From: azv Date: Wed, 22 Jun 2016 07:54:35 +0000 (+0300) Subject: Fix SIGSEGV in Mirror constraint (issue #1585) X-Git-Tag: V_2.4.0~75 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=4fe1718f4def4a9ebb596a4176c6f47c6d0118d5;p=modules%2Fshaper.git Fix SIGSEGV in Mirror constraint (issue #1585) --- diff --git a/src/SketchSolver/SketchSolver_ConstraintMirror.cpp b/src/SketchSolver/SketchSolver_ConstraintMirror.cpp index 7fe560873..b505b2f79 100644 --- a/src/SketchSolver/SketchSolver_ConstraintMirror.cpp +++ b/src/SketchSolver/SketchSolver_ConstraintMirror.cpp @@ -45,7 +45,7 @@ void SketchSolver_ConstraintMirror::getAttributes( if (!aFeature) continue; - myStorage->update(aFeature/*, myGroupID*/); + myStorage->update(aFeature, GID_UNKNOWN, true); aList->push_back(myStorage->entity(aFeature)); } }