From 6967daaac64dcfce89265c13b2c8279c44f5683b Mon Sep 17 00:00:00 2001 From: Vinson Lee Date: Wed, 19 Dec 2012 22:48:41 -0800 Subject: glean/texrect: Initialize TexRectTest member variable. Fixes uninitialized scalar field defect reported by Coverity. Signed-off-by: Vinson Lee Reviewed-by: Brian Paul --- tests/glean/ttexrect.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tests/glean') diff --git a/tests/glean/ttexrect.h b/tests/glean/ttexrect.h index 5e8675bc..f305585a 100644 --- a/tests/glean/ttexrect.h +++ b/tests/glean/ttexrect.h @@ -43,7 +43,8 @@ class TexRectTest: public BasicTest { public: TexRectTest(const char* testName, const char* filter, const char *prereqs, const char* description): - BasicTest(testName, filter, prereqs, description) { + BasicTest(testName, filter, prereqs, description), + mTolerance() { } virtual void runOne(BasicResult& r, Window& w); -- cgit v1.2.3