CB-808: CameraLauncher leaks bitmaps in Android

This commit is contained in:
macdonst 2012-05-18 15:22:05 -04:00
parent 2d77bcf1a4
commit 95fa0f4461

View File

@ -256,7 +256,9 @@ public class CameraLauncher extends Plugin {
}
}
return Bitmap.createScaledBitmap(bitmap, newWidth, newHeight, true);
Bitmap retval = Bitmap.createScaledBitmap(bitmap, newWidth, newHeight, true);
bitmap.recycle();
return retval;
}
/**