[3party/sgitess] Fixed buffer-overflow in tesselator.

This commit is contained in:
Yuri Gorshenin 2015-03-11 14:49:40 +03:00 committed by Alex Zolotarev
parent 89814f4c17
commit 4fffec0b1c

View file

@ -177,7 +177,7 @@ namespace tess
void Tesselator::add(Vertex const & v)
{
int id = m_impl->m_disp->create(v);
GLdouble coords[2] = {v.x, v.y};
GLdouble coords[3] = {v.x, v.y, 0};
gluTessVertex(m_impl->m_tess, coords, (GLvoid*)id);
}
}