Bug 253998 - remove debug spew. r+sr=roc

This commit is contained in:
tor%cs.brown.edu 2004-08-02 12:27:38 +00:00
Родитель c90fbb0885
Коммит 5d8f8fea9a
1 изменённых файлов: 0 добавлений и 2 удалений

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

@ -72,13 +72,11 @@ NS_IMETHODIMP gfxImageFrame::Init(nscoord aX, nscoord aY, nscoord aWidth, nscoor
/* check to make sure we don't overflow a 32-bit */
nscoord tmp = aWidth * aHeight;
if (tmp / aHeight != aWidth) {
fprintf(stderr, "erp\n");
NS_ASSERTION(0, "width or height too large\n");
return NS_ERROR_FAILURE;
}
tmp = tmp * 4;
if (tmp / 4 != aWidth * aHeight) {
fprintf(stderr, "erp2\n");
NS_ASSERTION(0, "width or height too large\n");
return NS_ERROR_FAILURE;
}