Dereference of a null pointer
NULL pointer dereferenced
Description
This defect occurs when you use a pointer with a value of NULL as
if it points to a valid memory location. If you dereference the zero address, such as
0x00, Polyspace® considers the null address as equivalent to NULL and
raises this defect.
Risk
Dereferencing a null pointer is undefined behavior. In most implementations, the dereference can cause your program to crash.
Fix
Check a pointer for NULL before dereference.
If the issue occurs despite an earlier check for NULL, look for
intermediate events between the check and the subsequent dereference. Often the
result details (or source code tooltips in Polyspace
as You Code™) show a sequence of events that led to the defect. You can implement
the fix on any event in the sequence. If the result details do not show this event
history, you can search for previous references of variables relevant to the defect
using right-click options in the source code and find related events. See also Interpret Polyspace Bug Finder Results in Polyspace Platform User Interface or Interpret Bug Finder Results in Polyspace Access Web Interface (Polyspace Access).
See examples of fixes below.
Extend Checker
A default Bug Finder analysis might not raise this defect when the input values are unknown and only a subset of inputs cause an issue. To check for defects caused by specific system input values, run a stricter Bug Finder analysis. See Extend Bug Finder Checkers to Find Defects from Specific System Input Values.
Examples
Result Information
| Group: Static memory |
| Language: C | C++ |
| Default: On |
Command-Line Syntax:
NULL_PTR
|
| Impact: High |
PQL Name:
std.defects.NULL_PTR
|
Version History
Introduced in R2013bSee Also
Find
defects (-checkers) | Arithmetic
operation with NULL pointer | Non-initialized pointer
Topics
- Interpret Polyspace Bug Finder Results in Polyspace Platform User Interface
- Interpret Bug Finder Results in Polyspace Access Web Interface (Polyspace Access)
- Address Polyspace Results Through Bug Fixes or Justifications
- Address Results in Polyspace Access Through Bug Fixes or Justifications (Polyspace Access)
- Extend Bug Finder Checkers to Find Defects from Specific System Input Values