Fix build - DO NOT MERGE

Change-Id: I1ab7c369082d1d2aa4f4ed11354c13ff86582410
This commit is contained in:
Chris Craik
2014-02-26 10:44:33 -08:00
parent 4fecd0aeeb
commit f85da42512

View File

@@ -184,7 +184,7 @@ void TextureCache::clearGarbage() {
Mutex::Autolock _l(mLock);
size_t count = mGarbage.size();
for (size_t i = 0; i < count; i++) {
const SkBitmap* bitmap = mGarbage.itemAt(i);
SkBitmap* bitmap = mGarbage.itemAt(i);
mCache.remove(bitmap);
delete bitmap;
}