File tree 2 files changed +8
-0
lines changed
src/java.base/share/classes/java/lang/foreign
2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -319,6 +319,9 @@ default MemorySegment allocate(MemoryLayout layout) {
319
319
*/
320
320
default MemorySegment allocateArray (MemoryLayout elementLayout , long count ) {
321
321
Objects .requireNonNull (elementLayout );
322
+ if (count < 0 ) {
323
+ throw new IllegalArgumentException ("Negative array size" );
324
+ }
322
325
return allocate (MemoryLayout .sequenceLayout (count , elementLayout ));
323
326
}
324
327
Original file line number Diff line number Diff line change @@ -160,6 +160,11 @@ public void testBadAllocationAlignNotPowerTwo(SegmentAllocator allocator) {
160
160
allocator .allocate (1 , 3 );
161
161
}
162
162
163
+ @ Test (dataProvider = "allocators" , expectedExceptions = IllegalArgumentException .class )
164
+ public void testBadAllocationArrayNegSize (SegmentAllocator allocator ) {
165
+ allocator .allocateArray (ValueLayout .JAVA_BYTE , -1 );
166
+ }
167
+
163
168
@ Test (expectedExceptions = OutOfMemoryError .class )
164
169
public void testBadArenaNullReturn () {
165
170
SegmentAllocator segmentAllocator = SegmentAllocator .newNativeArena (MemorySession .openImplicit ());
You can’t perform that action at this time.
0 commit comments