mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-06 21:50:11 +01:00
progs/vp: Fix memory leak in vp-tris.c.
(cherry picked from commit 760cf71572)
This commit is contained in:
parent
efb582fde7
commit
69ed1147a8
1 changed files with 2 additions and 0 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue