forked from organicmaps/organicmaps
[3party/sgitess] Fixed buffer-overflow in tesselator.
This commit is contained in:
parent
89814f4c17
commit
4fffec0b1c
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue