Fix for bug 271931: Crash with "Integer divide by zero" exception in nsBlender

rs=neil
This commit is contained in:
ere%atp.fi 2004-12-06 13:53:35 +00:00
Родитель a70532c297
Коммит 9ca4e07c8c
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -164,6 +164,9 @@ nsBlender::Blend(PRInt32 aSX, PRInt32 aSY, PRInt32 aWidth, PRInt32 aHeight, nsID
rangeCheck(aSrc, aSX, aSY, aWidth, aHeight);
rangeCheck(aDst, aDX, aDY, aWidth, aHeight);
if (aWidth <= 0 || aHeight <= 0)
return NS_OK;
PRUint8* srcBytes = nsnull;
PRUint8* secondSrcBytes = nsnull;
PRUint8* destBytes = nsnull;