maintainer-feedback requested: [Bug 258552] java/openjdk11: core dump under FreeBSD-13.0-RELEASE with Chinese locale

From: <bugzilla-noreply_at_freebsd.org>
Date: Fri, 17 Sep 2021 00:53:16 UTC
Bugzilla Automation <bugzilla@FreeBSD.org> has asked freebsd-java (Nobody)
<java@FreeBSD.org> for maintainer-feedback:
Bug 258552: java/openjdk11: core dump under FreeBSD-13.0-RELEASE with Chinese
locale
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=258552



--- Description ---
with Chinese locale zh_CN.UTF-8, openjdk11 can core dump quickly:

#!/bin/sh
#LANG=C
#LC_ALL=C
LANG=zh_CN.UTF-8
LC_ALL=zh_CN.UTF-8
export LANG;
export LC_ALL;
while [ 1 ]; do
	java -version
done

without Chinese locale is fine.