syscall: replace strcpy() by g_strlcpy()
commit871f95c6171d5301d14dbc73997aa8fbd8e9e7ef
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>
Mon, 24 Jul 2017 18:27:47 +0000 (24 15:27 -0300)
committerLaurent Vivier <laurent@vivier.eu>
Sun, 3 Jun 2018 23:30:43 +0000 (4 01:30 +0200)
tree8f22b3e4f82d900daa01ed5122506033e0bcf4c6
parent392fba9f583223786f844dce9b2e7f9a0ce0147a
syscall: replace strcpy() by g_strlcpy()

linux-user/syscall.c:9860:17: warning: Call to function 'strcpy' is insecure as it does not provide bounding of the memory buffer. Replace unbounded copy functions with analogous functions that support length arguments such as 'strlcpy'. CWE-119
                strcpy (buf->machine, cpu_to_uname_machine(cpu_env));
                ^~~~~~

Reported-by: Clang Static Analyzer
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Message-Id: <20170724182751.18261-32-f4bug@amsat.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
linux-user/syscall.c