dangling pointer
English
| Examples |
|---|
char* dp; // dp is immediately dangling as it is uninitialized
|
Noun
dangling pointer (plural dangling pointers)
- (programming, loosely) A pointer (variable that holds the address of a memory location) that does not reference a valid object.
- Synonym: wild pointer
- (programming, strictly) A pointer referencing memory that was previously deallocated.
Translations
pointer that does not reference a valid object
|