In this section:
Overview
This error is generated whenever an attempt is made to dereference a NULL
pointer.Code Description Enabled Reported Platform WRITE_NULL Writing to a NULL
pointerRuntime Windows/Unix
Problem
This code attempts to use a pointer which has not been explicitly assigned. Because the variable a
is global, it is initialized to zero by default, which results in dereferencing a NULL pointer in line 8.
/* * File: writnull.c */ int *a; main() { *a = 123; return (0); }
Diagnosis at Runtime
[writnull.c:8] **WRITE_NULL** >> *a = 123; Writing to a null pointer: a ---- Associated Common Weakness Enumerations ---- CWE-476: Null pointer dereference Stack trace where the error occurred: main() writnull.c, 8 **Memory corrupted. Program may crash!!**
- Line 2: Source line at which the problem was detected.
- Line 3: Description of the problem and the expression that is in error.
- Line 5-6: CWE associated with this problem.
- Line 8: Stack trace showing the function call sequence leading to the error.
- Line 10: Informational message indicating that a serious error has occurred which may cause the program to crash.
Repair
A common cause of this problem is the one shown in the example–use of a pointer that has not been explicitly assigned and which is initialized to zero. This is usually due to the omission of an assignment or allocation statement which would give the pointer a reasonable value.
The example code might, for example, be corrected as follows:
/* * File: writnull.c (Modified) */ int *a; main() { int b; a = &b; *a = 123; return (0); }
A second common source of this error is code which dynamically allocates memory but then zeroes pointers as blocks are freed. In this case, the error would indicate reuse of a freed block.
A final common problem is caused when one of the dynamic memory allocation routines, malloc
, calloc
, or realloc
, fails and returns a NULL
pointer. This can happen either because your program passes bad arguments or simply because it asks for too much memory. A simple way of finding this problem with Insure++ is to enable the RETURN_FAILURE error code and run the program again. It will then issue diagnostic messages every time a system call fails, including the memory allocation routines.
References
The table below shows Common Weakness Enumerations associated with this error.
CWE | Description |
---|---|
CWE-476 | Null pointer dereference |