mirror of
https://github.com/MariaDB/server.git
synced 2025-01-15 19:42:28 +01:00
9af4c7c6d7
Already the detection part of have_crypt.inc must be skipped in WITH_MSAN builds until the SIGSEGV in the crypt() interceptor has been fixed.
7 lines
265 B
PHP
7 lines
265 B
PHP
# MDEV-27964 The function ENCRYPT() causes SIGSEGV in WITH_MSAN builds
|
|
-- source include/not_msan.inc
|
|
# encrypt('a') is NULL if crypt(3) is not available
|
|
# encrypt('a') is "*0" in fips mode
|
|
if (`select length(encrypt('a')) > 3 IS NOT TRUE`) {
|
|
skip No crypt(3);
|
|
}
|