8380228: JNI primitive type mismatch in Java_com_sun_java_swing_plaf_gtk_GTKLookAndFeel_applyThemeIfNeeded of swing_GTKEngine.c:403 (ID: 52423)

Reviewed-by: psadhukhan, serb
This commit is contained in:
Alexander Zvegintsev 2026-03-18 20:47:48 +00:00
parent 30145a4bd7
commit 37cdc7977f

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2005, 2020, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2005, 2026, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -400,5 +400,5 @@ Java_com_sun_java_swing_plaf_gtk_GTKLookAndFeel_applyThemeIfNeeded(JNIEnv *env,
const gboolean result = gtk->apply_theme_if_needed();
gtk->gdk_threads_leave();
return result;
return result ? JNI_TRUE : JNI_FALSE;
}