xkbcomp: use memcpy over strncpy to avoid analyzer warnings
authorPeter Hutterer <peter.hutterer@who-t.net>
Mon, 29 Mar 2021 06:23:28 +0000 (16:23 +1000)
committerRan Benita <ran@unusedvar.com>
Mon, 29 Mar 2021 22:34:33 +0000 (01:34 +0300)
commit20f7f80c236d63d5b6016fca838b2da19c220cd9
tree62bb6a3ec804bab225ade6473897c21b55a18d9a
parentcda2eaf1f5a021dd5d6876f233a1160f7dddd51c
xkbcomp: use memcpy over strncpy to avoid analyzer warnings

The target buffer is 7 bytes long, null-termination is optional (as the comment
already suggests). Coverity is unhappy about this though so let's use memset and
memcpy instead.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
src/xkbcomp/action.c