aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/SwizzlerTest.cpp
diff options
context:
space:
mode:
authorGravatar msarett <msarett@google.com>2015-04-09 13:14:40 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-04-09 13:14:40 -0700
commit29be7958de367a7067a3a236c5a23f88ce8e53a4 (patch)
tree90c153954d2a62d9dc96ac5544b5b2e4a7717015 /tests/SwizzlerTest.cpp
parent438b2adefb9e9213e0ddaf0609405d3087a1cf0a (diff)
Fix ASAN error
BUG=skia: TBR= Review URL: https://codereview.chromium.org/1072183002
Diffstat (limited to 'tests/SwizzlerTest.cpp')
-rw-r--r--tests/SwizzlerTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/SwizzlerTest.cpp b/tests/SwizzlerTest.cpp
index 1355f3be8c..f02f86b682 100644
--- a/tests/SwizzlerTest.cpp
+++ b/tests/SwizzlerTest.cpp
@@ -28,7 +28,7 @@ static void check_fill(skiatest::Reporter* r,
const size_t totalBytes = imageInfo.getSafeSize(rowBytes) + offset;
// Create fake image data where every byte has a value of 0
- SkAutoTDelete<uint8_t> storage((uint8_t*) sk_malloc_throw(totalBytes));
+ SkAutoTDeleteArray<uint8_t> storage(SkNEW_ARRAY(uint8_t, totalBytes));
memset(storage.get(), 0, totalBytes);
// Adjust the pointer in order to test on different memory alignments
uint8_t* imageData = storage.get() + offset;