mirror of https://github.com/CGAL/cgal
merge branch origin/Interval_skip_list-new_delete_mismatch-GF
Remove memory leaks detected by AddressSanitizer. Tested in CGAL-4.4-Ic-54 and CGAL-4.4-Ic-55. Approved by the release manager.
This commit is contained in:
commit
605bdccf38
|
|
@ -940,8 +940,8 @@ template <class Interval>
|
|||
{
|
||||
for(int i = 0; i<=topLevel; i++)
|
||||
delete markers[i];
|
||||
delete forward;
|
||||
delete markers;
|
||||
delete [] forward;
|
||||
delete [] markers;
|
||||
delete eqMarkers;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue