glu/sgi: Initialize variable in directedLine.

This commit is contained in:
Vinson Lee
2009-12-23 17:50:02 -08:00
parent 520955a0cd
commit 261c3cd530
@@ -800,7 +800,7 @@ directedLine* readAllPolygons(char* filename)
{
Int nEdges;
fscanf(fp, "%i", &nEdges);
Real vert[2][2];
Real vert[2][2] = { { 0 } };
Real VV[2][2];
/*the first two vertices*/
fscanf(fp, "%f", &(vert[0][0]));