Fix use of uninitialized variable in SM_overlayer.h

This commit is contained in:
Giles Bathgate 2020-11-18 08:56:02 +00:00
parent eebf862833
commit c586c3c6b5
1 changed files with 1 additions and 1 deletions

View File

@ -2118,7 +2118,7 @@ complete_face_support(SVertex_iterator v_start, SVertex_iterator v_end,
{ CGAL_NEF_TRACEN("complete_face_support");
for (SVertex_iterator v = v_start; v != v_end; ++v) {
CGAL_NEF_TRACEN("VERTEX = "<<PH(v));
Mark m_buffer[2];
Mark m_buffer[2] {};
SHalfedge_handle e_below = halfedge_below(v);
if ( v == v_start ) {
for (int i=0; i<2; ++i){