Fixes uninitialized scalar field defect reported by Coverity.

Signed-off-by: Vinson Lee <[email protected]>
---
 tests/glean/tfbo.h | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/tests/glean/tfbo.h b/tests/glean/tfbo.h
index 01d0d27..f7fe4d7 100644
--- a/tests/glean/tfbo.h
+++ b/tests/glean/tfbo.h
@@ -47,7 +47,9 @@ class FBOTest: public MultiTest
 public:
        FBOTest(const char* testName, const char* filter,
                  const char *extensions, const char* description):
-               MultiTest(testName, filter, extensions, description)
+               MultiTest(testName, filter, extensions, description),
+               haveARBfbo(false),
+               tolerance()
        {
        }
 
-- 
1.8.0.2

_______________________________________________
Piglit mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/piglit

Reply via email to