Fix bug in to_tsquery().
We were using memcpy() to copy to a possibly overlapping memory region, which is a no-no. Use memmove() instead.
Showing
Please register or sign in to comment
We were using memcpy() to copy to a possibly overlapping memory region, which is a no-no. Use memmove() instead.