Thu, 01/12/2012 - 14:57
Forums:
Hello,
the following variables in HLRBRep_InternalAlgo::HideSelected (lines 800-820 in OCCT 6.5.2):
Standard_Integer *Val = new Standard_Integer [nf+1];
Standard_Real *Size = new Standard_Real [nf+1];
Standard_Integer *Index = new Standard_Integer [nf+1];
are deleted (lines 918-920) the following way:
delete Val;
delete Size;
delete Index;
which I guess is wrong because the array delete operator should be used like in OCCT 6.5.1:
delete [] Val;
delete [] Size;
delete [] Index;
Pawel
Thu, 01/12/2012 - 15:01
Oops,
it's not a regression... just differs from my (hacked) OCC 6.5.1 version.
Please consider it as a bug report.
Pawel
Fri, 01/13/2012 - 11:45
Dear Pawel,
As you probably know the website dedicated to contributors is now available: http://dev.opencascade.org.
We suggest you to make a contribution via the Collaborative portal.
For bugs registration Mantis bugtracker is available now.
Regards
Fri, 01/13/2012 - 11:58
Hello Forum Supervisor,
I have expected that ;)
I will actively start using the dev portal as soon as the CLA paper is signed by the employer (which will probably happen soon).
Best regards
Pawel
Mon, 01/30/2012 - 15:01
http://tracker.dev.opencascade.org/view.php?id=22938