Skip to content

Commit 535d5c1

Browse files
committedMar 6, 2022
Fix corner case with timeed DS receive + SM
1 parent fa10b6a commit 535d5c1

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed
 

‎src/java.base/share/classes/sun/nio/ch/DatagramChannelImpl.java

+7-5
Original file line numberDiff line numberDiff line change
@@ -666,11 +666,13 @@ private int tryReceive(byte[] b, int off, int len, boolean connected)
666666
}
667667

668668
// copy datagram into byte array
669-
if (n > 0 && len > 0) {
670-
dst.flip();
671-
dst.get(b, off, n);
672-
} else {
673-
n = 0;
669+
if (n > 0) {
670+
if (len > 0) {
671+
dst.flip();
672+
dst.get(b, off, n);
673+
} else {
674+
n = 0;
675+
}
674676
}
675677
}
676678
return n;

0 commit comments

Comments
 (0)
Please sign in to comment.