Skip to content

Commit fa0f161

Browse files
author
Brian Burkhalter
committedMar 18, 2021
8263742: (bf) MappedByteBuffer.force() should use the capacity as its upper bound
Reviewed-by: adinn, alanb
1 parent c82a673 commit fa0f161

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed
 

‎src/java.base/share/classes/java/nio/MappedByteBuffer.java

+8-8
Original file line numberDiff line numberDiff line change
@@ -232,9 +232,9 @@ public final MappedByteBuffer force() {
232232
if (fd == null) {
233233
return this;
234234
}
235-
int limit = limit();
236-
if (isSync || ((address != 0) && (limit != 0))) {
237-
return force(0, limit);
235+
int capacity = capacity();
236+
if (isSync || ((address != 0) && (capacity != 0))) {
237+
return force(0, capacity);
238238
}
239239
return this;
240240
}
@@ -267,11 +267,11 @@ public final MappedByteBuffer force() {
267267
* @param index
268268
* The index of the first byte in the buffer region that is
269269
* to be written back to storage; must be non-negative
270-
* and less than limit()
270+
* and less than {@code capacity()}
271271
*
272272
* @param length
273273
* The length of the region in bytes; must be non-negative
274-
* and no larger than limit() - index
274+
* and no larger than {@code capacity() - index}
275275
*
276276
* @throws IndexOutOfBoundsException
277277
* if the preconditions on the index and length do not
@@ -289,10 +289,10 @@ public final MappedByteBuffer force(int index, int length) {
289289
if (fd == null) {
290290
return this;
291291
}
292-
int limit = limit();
293-
if ((address != 0) && (limit != 0)) {
292+
int capacity = capacity();
293+
if ((address != 0) && (capacity != 0)) {
294294
// check inputs
295-
Objects.checkFromIndexSize(index, length, limit);
295+
Objects.checkFromIndexSize(index, length, capacity);
296296
SCOPED_MEMORY_ACCESS.force(scope(), fd, address, isSync, index, length);
297297
}
298298
return this;

0 commit comments

Comments
 (0)
Please sign in to comment.