Main Content
MISRA C++:2023 Rule 25.5.1
Description
Rule Definition
The setlocale
and
std::locale::global
functions shall not be
called.
Rationale
A call to the setlocale()
or std::locale::global()
function can introduce data races with other calls to the
setlocale()
function, or with calls to functions that use the
locale such as fprintf()
and tolower()
.
Polyspace Implementation
The checker reports a violation on explicit calls to the
setlocale()
or std::locale::global()
functions.
Troubleshooting
If you expect a rule violation but Polyspace® does not report it, see Diagnose Why Coding Standard Violations Do Not Appear as Expected.
Examples
Check Information
Group: Localization Library |
Category: Required |
Version History
Introduced in R2024b