progs/glsl: Fix memory leak in deriv.c.

This commit is contained in:
Vinson Lee
2009-11-17 09:53:19 -08:00
parent 29f3e7e1d1
commit 0e783c7d03

View File

@@ -140,6 +140,7 @@ MakeSphere(void)
glNewList(SphereList, GL_COMPILE);
gluSphere(obj, 2.0f, 30, 15);
glEndList();
gluDeleteQuadric(obj);
}