Hi, I got a SEGFAULT in my program when compiling it with gcc-7 but it is/was all good when using gcc-6.
The SEGFAULT happens due to the line below:
d_point = *p;
And a fix for it (with gcc-7) has been:
memcpy(&d_point,
p,
sizeof(d_point));
Does this make any sense to anybody?
Cheers,
Marco
