Commit 20f7f80c236d63d5b6016fca838b2da19c220cd9

Peter Hutterer 2021-03-29T16:23:28

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>