Say for example if Log_t is a struct. struct
Furthermore, pLog is a variable of Log_t pointer type (stores a pointer/address) and it is initialized to NULL. Is pLog
initialized to NULL or the structure members that it points to initialized to NULL.
static Log_t *pLog = NULL;
What would happen if such a variable that is initialized to NULL OR before it has been assigned a NON-NULL value is accessed, for example if we try to read from that NULL address, could there be an exception fault since address 0x0000 is usually where special "jump to" addresses are stored? This is a Link to original issue - Details of Exception Fault