Noun
dangling pointer (plural dangling pointers)
(programming) A pointer (variable that holds the address of a memory location) that does not reference a valid object.
As a result, certain categories of bugs are eliminated or substantially reduced: * Dangling pointer bugs, which occur when a piece of memory is freed while there are still pointers to it, and one of those pointers is dereferenced. Source: Internet