Mesa (mesa_7_6_branch): progs/vp: Fix memory leak in vp-tris.c.

Vinson Lee vlee at kemper.freedesktop.org
Fri Dec 4 07:20:27 UTC 2009


Module: Mesa
Branch: mesa_7_6_branch
Commit: 69ed1147a8a576fb28ba1dc2b030d903ae094eda
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=69ed1147a8a576fb28ba1dc2b030d903ae094eda

Author: Vinson Lee <vlee at vmware.com>
Date:   Thu Nov 19 22:59:01 2009 -0800

progs/vp: Fix memory leak in vp-tris.c.
(cherry picked from commit 760cf71572a071ce43da576ebfeff4a8099150bc)

---

 progs/vp/vp-tris.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/progs/vp/vp-tris.c b/progs/vp/vp-tris.c
index 1356242..29cd027 100644
--- a/progs/vp/vp-tris.c
+++ b/progs/vp/vp-tris.c
@@ -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) {




More information about the mesa-commit mailing list