On 12/18/2012 12:24 AM, Vinson Lee wrote:
Fixes uninitialized scalar field defect reported by Coverity.

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

diff --git a/tests/glean/tvertprog1.h b/tests/glean/tvertprog1.h
index 429692f..1c80406 100644
--- a/tests/glean/tvertprog1.h
+++ b/tests/glean/tvertprog1.h
@@ -59,7 +59,9 @@ class VertexProgramTest: public MultiTest
  public:
        VertexProgramTest(const char* testName, const char* filter,
                          const char *extensions, const char* description):
-               MultiTest(testName, filter, extensions, description)
+               MultiTest(testName, filter, extensions, description),
+               tolerance(),
+               looseTolerance()
        {
        }


For both glean patches:
Reviewed-by: Brian Paul <[email protected]>
_______________________________________________
Piglit mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/piglit

Reply via email to