MISRA C++:2023 Rule 21.2.3
Description
Rule Definition
The library function system
from <cstdlib>
shall not be used
Rationale
The system()
function is platform-dependent, which can result in
implementation-defined or undefined behavior. Errors with the system()
function can cause security vulnerabilities.
Instead, use direct API calls if possible, or safer functions such as
posix_spawn()
.
Polyspace Implementation
Polyspace® reports a violation whenever the code takes the address of the
system()
function from <cstdlib>
or
<stdlib.h>
, calls the system()
function, or
expands a macro with the name system
.
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: Language support library |
Category: Required |
Version History
Introduced in R2024b