From 15641a6181cdaac2aadf07585de66483b4b7ae6b Mon Sep 17 00:00:00 2001 From: Ben Cheng Date: Wed, 20 Feb 2013 13:20:03 -0800 Subject: Use free for memory chunks allocated through memalign. BUG: 8234423 Change-Id: Ic4100a780908c94540722cc4af5f73f4940431b4 --- libs/hwui/FontRenderer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libs/hwui/FontRenderer.cpp') diff --git a/libs/hwui/FontRenderer.cpp b/libs/hwui/FontRenderer.cpp index 5d5e6a58001e..1d9eb0e0793b 100644 --- a/libs/hwui/FontRenderer.cpp +++ b/libs/hwui/FontRenderer.cpp @@ -797,7 +797,7 @@ void FontRenderer::blurImage(uint8_t** image, int32_t width, int32_t height, int mRsScript->blur(ain, aout); // replace the original image's pointer, avoiding a copy back to the original buffer - delete *image; + free(*image); *image = outImage; } -- cgit v1.2.3-59-g8ed1b