diff options
author | Vinson Lee <vlee@vmware.com> | 2010-06-07 18:34:13 -0700 |
---|---|---|
committer | Vinson Lee <vlee@vmware.com> | 2010-06-07 18:34:13 -0700 |
commit | 380f08f4ec6653aa4ba3e3d36587a31132706f0e (patch) | |
tree | 37629930c2c087a5be38e8e2e63d11aca86eb1bc /src/gallium/tests/graw/gs-test.c | |
parent | d09271d6ef5fd3ddb0fade7865d40d5c43f9c069 (diff) |
graw: Fix file handle leaks.
Diffstat (limited to 'src/gallium/tests/graw/gs-test.c')
-rw-r--r-- | src/gallium/tests/graw/gs-test.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/tests/graw/gs-test.c b/src/gallium/tests/graw/gs-test.c index 91b7b97ee04..0a5a2c974a3 100644 --- a/src/gallium/tests/graw/gs-test.c +++ b/src/gallium/tests/graw/gs-test.c @@ -238,6 +238,7 @@ static void set_geometry_shader( void ) handle = graw_parse_geometry_shader(ctx, buf); ctx->bind_gs_state(ctx, handle); + fclose(f); } |