From bedf7e5c0e4a16b5be1426cecaf0bdc2d3071352 Mon Sep 17 00:00:00 2001 From: joshualitt Date: Thu, 23 Jul 2015 08:09:35 -0700 Subject: fix memory leak in TextBlobCacheTest TBR=bsalomon@google.com BUG=skia: Review URL: https://codereview.chromium.org/1252593002 --- tests/TextBlobCacheTest.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tests/TextBlobCacheTest.cpp') diff --git a/tests/TextBlobCacheTest.cpp b/tests/TextBlobCacheTest.cpp index 1c6596258b..e2fa554c9c 100644 --- a/tests/TextBlobCacheTest.cpp +++ b/tests/TextBlobCacheTest.cpp @@ -25,7 +25,8 @@ #include "GrContextFactory.h" struct TextBlobWrapper { - explicit TextBlobWrapper(const SkTextBlob* blob) : fBlob(SkRef(blob)) {} + // This class assumes it 'owns' the textblob it wraps, and thus does not need to take a ref + explicit TextBlobWrapper(const SkTextBlob* blob) : fBlob(blob) {} TextBlobWrapper(const TextBlobWrapper& blob) : fBlob(SkRef(blob.fBlob.get())) {} SkAutoTUnref fBlob; -- cgit v1.2.3