talloc: fix gcc -O3 aliasing warnings
A void * could point to anything, but a void ** can't point to any pointer. So we use a void * and memcpy, which I believe is safe.
Showing
Please register or sign in to comment
A void * could point to anything, but a void ** can't point to any pointer. So we use a void * and memcpy, which I believe is safe.