CWE 546
R2026bDescription
Suspicious Comment
Polyspace Implementation
Polyspace® checks for the issue Suspicious Comments
Examples
The issue occurs when a comment in your code contains one of these suspicious words:
BUGHACKFIXMELATERTODO
The matching is case-insensitive. The checker also detects these words when they are
prefixed by a symbol such as @, or when they are followed by numbers or
a trailing special character. For instance, @TODO,
FIXME21, and todo: all trigger a violation.
A function or variable name that contains one of these words does not trigger a violation. The rule checker only flags comments.
Comments containing these words suggest that the code has known problems or unfinished functionality that a developer intended to address later. Shipping code with these markers can indicate missing security checks, incomplete error handling, or unresolved defects. An attacker who gains access to the source code can use these markers to identify weak points.
Resolve the underlying issue described in the comment and remove the suspicious comments. If the comment describes work that is genuinely deferred, track it in an issue tracker and remove the comment from the code.
In this example, Polyspace detects comments that contain suspicious words indicating incomplete or problematic code.
#include <stdlib.h>
void process_data(int *data, int count) {
/* HACK: skipping validation for now */ // Noncompliant
for (int i = 0; i < count; i++) {
data[i] = data[i] * 2;
}
}
void initialize_buffer(char *buffer, int size) {
// TODO: add bounds checking // Noncompliant
for (int i = 0; i < size; i++) {
buffer[i] = 0;
}
}Resolve the issues described in the suspicious comments and remove the markers.
#include <stdlib.h>
void process_data(int *data, int count) {
/* Input is validated by the caller per API contract */ // Compliant
for (int i = 0; i < count; i++) {
data[i] = data[i] * 2;
}
}
void initialize_buffer(char *buffer, int size) {
if (buffer == NULL || size <= 0) { // Compliant
return;
}
for (int i = 0; i < size; i++) {
buffer[i] = 0;
}
}Track the issues in an issue tracker and remove the comments.
#include <stdlib.h>
void process_data(int *data, int count) {
/* JIRA 12345*/
for (int i = 0; i < count; i++) {
data[i] = data[i] * 2;
}
}
void initialize_buffer(char *buffer, int size) {
// Jira 78942
for (int i = 0; i < size; i++) {
buffer[i] = 0;
}
}Check Information
| Group: Bad Coding Practices |
PQL Name:
std.cwe_native.R546 |
Version History
Introduced in R2026b
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)