...
- Integer arguments of types ranked lower than
int
are promoted toint
, ifint
can hold all the values of that type; otherwise they are promoted tounsigned int
(the "integer promotions"). - Arguments of type
float
are promoted todouble
.
Non-Compliant Code Example (
...
Type Interpretation Error)
The C99 printf()
function is implemented as a variadic function. This non-compliant code example swaps its null-terminated byte string and integer parameters with respect to how they were specified in the format string. Consequently, the integer is interpreted as a pointer to a null-terminated byte string and dereferenced. This will likely cause the program to abnormally terminate. Note that the error_message
pointer is likewise interpreted as an integer.
Code Block | ||
---|---|---|
| ||
const char *error_msg = "Error occurred"; /* ... */ printf("%s:%d", 15, error_msg); |
Compliant Solution (
...
Type Interpretation Error)
This compliant solution is formatted so that the specifiers are consistent with their parameters.
...
As shown, care must be taken to ensure that the arguments passed to a format string function match up with the supplied format string.
Non-Compliant Code Example (
...
Type Alignment Error)
In this non-compliant code example, a type long long
integer is incorrectly parsed by the printf()
function with a %d
specifier. This code may result in data truncation or misrepresentation when the value is extracted from the argument list.
...
Because a long long
was not interpreted, if the long long
uses more bytes for storage, the subsequent format specifier %s
is unexpectedly offset, causing unknown data to be used instead of the pointer to the message.
Compliant Solution (
...
Type Alignment Error)
This compliant solution adds the length modifier ll
to the %d
format specifier so that the variadic function parser for printf()
extracts the correct number of bytes from the variable argument list for the long long
argument.
...