progs/vp: Fix memory leak in vp-tris.c.

(cherry picked from commit 760cf71572)
This commit is contained in:
Vinson Lee 2009-11-19 22:59:01 -08:00
parent efb582fde7
commit 69ed1147a8

View file

@ -99,9 +99,11 @@ static void Init( void )
sz = (GLuint) fread(buf, 1, sizeof(buf), f);
if (!feof(f)) {
fprintf(stderr, "file too long\n");
fclose(f);
exit(1);
}
fclose(f);
fprintf(stderr, "%.*s\n", sz, buf);
if (strncmp( buf, "!!VP", 4 ) == 0) {