Skip to content

Commit dabdae6

Browse files
committedAug 5, 2024
8334599: Improve code from JDK-8302671
Reviewed-by: aivanov, stuefe, prr
1 parent 8bd3cd5 commit dabdae6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎src/java.desktop/windows/native/libawt/windows/awt_Component.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -3362,10 +3362,10 @@ BOOL AwtComponent::IsNumPadKey(UINT vkey, BOOL extended)
33623362
return FALSE;
33633363
}
33643364
static void
3365-
resetKbdState( BYTE kstate[256]) {
3366-
BYTE tmpState[256];
3365+
resetKbdState( BYTE (&kstate)[AwtToolkit::KB_STATE_SIZE]) {
3366+
BYTE tmpState[AwtToolkit::KB_STATE_SIZE];
33673367
WCHAR wc[2];
3368-
memmove(tmpState, kstate, 256 * sizeof(BYTE));
3368+
memmove(tmpState, kstate, sizeof(kstate));
33693369
tmpState[VK_SHIFT] = 0;
33703370
tmpState[VK_CONTROL] = 0;
33713371
tmpState[VK_MENU] = 0;

0 commit comments

Comments
 (0)
Please sign in to comment.