Bug 802510 - Reset position on the thumbnail data buffer to the beginning before reading out of it. r=blassey a=lsblakk

This commit is contained in:
Kartikaya Gupta 2012-11-14 00:34:25 -08:00
Родитель b188b9803a
Коммит a5355ae3bd
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -731,6 +731,7 @@ abstract public class GeckoApp
void handleThumbnailData(Tab tab, ByteBuffer data) {
if (shouldUpdateThumbnail(tab)) {
Bitmap b = tab.getThumbnailBitmap();
data.position(0);
b.copyPixelsFromBuffer(data);
processThumbnail(tab, b, null);
}