aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/ICCTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ICCTest.cpp')
-rw-r--r--tests/ICCTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ICCTest.cpp b/tests/ICCTest.cpp
index f4639f0003..38d6801c5f 100644
--- a/tests/ICCTest.cpp
+++ b/tests/ICCTest.cpp
@@ -18,7 +18,7 @@ static bool almost_equal(float a, float b) {
static inline void test_to_xyz_d50(skiatest::Reporter* r, SkICC* icc, bool shouldSucceed,
const float* reference) {
- SkMatrix44 result;
+ SkMatrix44 result(SkMatrix44::kUninitialized_Constructor);
REPORTER_ASSERT(r, shouldSucceed == icc->toXYZD50(&result));
if (shouldSucceed) {
float resultVals[16];