Bug 174831 - fix indexes in spacer image detector.

r=paper, sr=bzbarsky, a=blizzard
This commit is contained in:
tor%cs.brown.edu 2002-10-17 19:20:16 +00:00
Родитель 0772917415
Коммит 9b88c76b6c
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -434,7 +434,7 @@ void nsImageGTK::UpdateCachedImage()
if (mIsSpacer && (leftindex <= rightindex)) {
for (unsigned y=rect->y; (y<bottom) && mIsSpacer; y++) {
unsigned char *alpha = mAlphaBits + mAlphaRowBytes*y + leftindex;
for (unsigned x=leftindex; x<rightindex; x++) {
for (unsigned x=leftindex; x<=rightindex; x++) {
if (*(alpha++)!=0) {
mIsSpacer = PR_FALSE;
break;