On Mon, 10 Apr 2023, Markus Elfring wrote: > > Setting var to &input->member does not cause any immediate problem. > > Undefined behaviour would be involved if the expression variable “input” > will actually be resolved to a null pointer, wouldn't it? No. &input->member adds an offset to the address of input. julia