-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.4.0
-
generic
-
generic
Name: naC79102 Date: 12/15/2000
Exception doesn't rise when size takes a negative value.
The constructors that show this bug are
DataBufferUShort(short[] dataArray, int size) ,DataBufferUShort(short[]
dataArray, int size, int offset), DataBufferUShort(short[][] dataArray,
int size) and
DataBufferUShort(short[][] dataArray, int size, int[] offsets).
Sample code follows....
package javasoft.sqe.tests.api.java.awt.java2d.image.DataBufferUShort;
import java.awt.image.DataBufferUShort;
import java.awt.image.DataBuffer;
public class test {
public test() {
try{
new DataBufferUShort(new short[] {2,3,4,5},-10);
}catch(Exception ee)
{ System.out.println("exception raised");}
try{
new DataBufferUShort(new short[] {2,3,4,5},-10,3);
}catch(Exception ee)
{ System.out.println("exception raised");}
try{
new DataBufferUShort(new short[][] {{2,3},{3,4}},-5);
}catch(Exception ee)
{ System.out.println("exception raised");}
try{
new DataBufferUShort(new short[][] {{2,3},{3,4}},-5,new int[]
{1,2});
}catch(Exception ee)
{ System.out.println("exception raised");}
}
public static void main(String[] args) {
new test();
}
}
======================================================================
- duplicates
-
JDK-4398381 java.awt.image.DataBufferShort should check for negative size
-
- Open
-