summaryrefslogtreecommitdiff
path: root/libs/hwui/PathCache.cpp
diff options
context:
space:
mode:
author Chris Craik <ccraik@android.com> 2014-02-26 11:06:27 -0800
committer Android Git Automerger <android-git-automerger@android.com> 2014-02-26 11:06:27 -0800
commit7b4cce68853d8bcfce2b6bd7f999915063eb56d2 (patch)
tree7438ebca334a50efe31724f7b60ec3b54d9346cf /libs/hwui/PathCache.cpp
parent7fe5978bf7c4b473d8f6db5a12cfdcd110511331 (diff)
parentc3bac8a096cc5661cf91c8c0aa9b7dd0fc099c5d (diff)
am c3bac8a0: Merge "Fix graphics corruption caused by HWUI caches"
* commit 'c3bac8a096cc5661cf91c8c0aa9b7dd0fc099c5d': Fix graphics corruption caused by HWUI caches
Diffstat (limited to 'libs/hwui/PathCache.cpp')
-rw-r--r--libs/hwui/PathCache.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/libs/hwui/PathCache.cpp b/libs/hwui/PathCache.cpp
index 5df64080b102..cf8adf8772f3 100644
--- a/libs/hwui/PathCache.cpp
+++ b/libs/hwui/PathCache.cpp
@@ -395,7 +395,9 @@ void PathCache::clearGarbage() {
Mutex::Autolock l(mLock);
size_t count = mGarbage.size();
for (size_t i = 0; i < count; i++) {
- remove(pathsToRemove, mGarbage.itemAt(i));
+ const path_pair_t& pair = mGarbage.itemAt(i);
+ remove(pathsToRemove, pair);
+ delete pair.getFirst();
}
mGarbage.clear();
}