Skip to content

Commit 4545ed6

Browse files
committedJul 12, 2022
8289365: SegmentAllocator:allocateArray(MemoryLayout, count) does not throw IAEx when count is -1
Reviewed-by: psandoz
1 parent 0fd1b68 commit 4545ed6

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed
 

‎src/java.base/share/classes/java/lang/foreign/SegmentAllocator.java

+3
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,9 @@ default MemorySegment allocate(MemoryLayout layout) {
319319
*/
320320
default MemorySegment allocateArray(MemoryLayout elementLayout, long count) {
321321
Objects.requireNonNull(elementLayout);
322+
if (count < 0) {
323+
throw new IllegalArgumentException("Negative array size");
324+
}
322325
return allocate(MemoryLayout.sequenceLayout(count, elementLayout));
323326
}
324327

‎test/jdk/java/foreign/TestSegmentAllocators.java

+5
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,11 @@ public void testBadAllocationAlignNotPowerTwo(SegmentAllocator allocator) {
160160
allocator.allocate(1, 3);
161161
}
162162

163+
@Test(dataProvider = "allocators", expectedExceptions = IllegalArgumentException.class)
164+
public void testBadAllocationArrayNegSize(SegmentAllocator allocator) {
165+
allocator.allocateArray(ValueLayout.JAVA_BYTE, -1);
166+
}
167+
163168
@Test(expectedExceptions = OutOfMemoryError.class)
164169
public void testBadArenaNullReturn() {
165170
SegmentAllocator segmentAllocator = SegmentAllocator.newNativeArena(MemorySession.openImplicit());

0 commit comments

Comments
 (0)
Please sign in to comment.