commit | 15641a6181cdaac2aadf07585de66483b4b7ae6b | [log] [tgz] |
---|---|---|
author | Ben Cheng <bccheng@google.com> | Wed Feb 20 13:20:03 2013 -0800 |
committer | Ben Cheng <bccheng@google.com> | Wed Feb 20 13:20:03 2013 -0800 |
tree | 9921ccaec2a24f89e49fee585cbb3c082657642b | |
parent | 404f87e54057bd09b9a504066d7d573db1e11eb3 [diff] |
Use free for memory chunks allocated through memalign. BUG: 8234423 Change-Id: Ic4100a780908c94540722cc4af5f73f4940431b4
diff --git a/libs/hwui/FontRenderer.cpp b/libs/hwui/FontRenderer.cpp index 5d5e6a5..1d9eb0e 100644 --- a/libs/hwui/FontRenderer.cpp +++ b/libs/hwui/FontRenderer.cpp
@@ -797,7 +797,7 @@ mRsScript->blur(ain, aout); // replace the original image's pointer, avoiding a copy back to the original buffer - delete *image; + free(*image); *image = outImage; }
diff --git a/libs/hwui/TextDropShadowCache.cpp b/libs/hwui/TextDropShadowCache.cpp index db7bd48..f1f35bd 100644 --- a/libs/hwui/TextDropShadowCache.cpp +++ b/libs/hwui/TextDropShadowCache.cpp
@@ -222,7 +222,7 @@ } // Cleanup shadow - delete shadow.image; + free(shadow.image); } return texture;