提交 a345b05d 编写于 作者: B bae

6736178: java.awt.image.SampleModel constructor unexpectedly throws IllegalArgumentException

Reviewed-by: jgodinez, prr
上级 8d0ad842
......@@ -121,7 +121,7 @@ public abstract class SampleModel
*/
public SampleModel(int dataType, int w, int h, int numBands)
{
float size = (float)w*h;
long size = (long)w * h;
if (w <= 0 || h <= 0) {
throw new IllegalArgumentException("Width ("+w+") and height ("+
h+") must be > 0");
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册