summaryrefslogtreecommitdiff
path: root/libs/hwui/TextDropShadowCache.cpp
diff options
context:
space:
mode:
author Ben Cheng <bccheng@google.com> 2013-02-20 22:34:57 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2013-02-20 22:34:58 +0000
commit7a60c43d874bd047ea4b93b94c9b8771ea5739cc (patch)
tree584beb1d903ea697e7268bd94aa71407065782aa /libs/hwui/TextDropShadowCache.cpp
parent780294be50b57d94455c709044e36098c829f72a (diff)
parent15641a6181cdaac2aadf07585de66483b4b7ae6b (diff)
Merge "Use free for memory chunks allocated through memalign."
Diffstat (limited to 'libs/hwui/TextDropShadowCache.cpp')
-rw-r--r--libs/hwui/TextDropShadowCache.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/TextDropShadowCache.cpp b/libs/hwui/TextDropShadowCache.cpp
index db7bd489b404..f1f35bd1711c 100644
--- a/libs/hwui/TextDropShadowCache.cpp
+++ b/libs/hwui/TextDropShadowCache.cpp
@@ -222,7 +222,7 @@ ShadowTexture* TextDropShadowCache::get(SkPaint* paint, const char* text, uint32
}
// Cleanup shadow
- delete shadow.image;
+ free(shadow.image);
}
return texture;