Bug 539356 - Part 29 - Handle OOM exception gracefully during java snapshots. r=jrmuizel

This commit is contained in:
Matt Woodrow 2012-08-29 17:48:44 +12:00
Родитель d5505976c0
Коммит 9fd89a9ad4
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -123,7 +123,11 @@ public class ScreenshotLayer extends SingleTileLayer {
end = Math.max(start, Math.min(dst.limit(), Math.min(src.capacity(), end)));
dst.position(start);
src.position(start).limit(end);
dst.put(src);
// This allocates a lot of memory and can fail sometimes. Handling the
// exception is better than crashing.
try {
dst.put(src);
} catch (java.lang.OutOfMemoryError e) {}
}
synchronized void setBitmap(ByteBuffer data, int width, int height, int format, Rect rect) {