linux-user: Don't write off end of new_utsname buffer
commit332c9781f6a7c496adf605a1be72776598c7adc2
authorPeter Maydell <peter.maydell@linaro.org>
Tue, 12 Jul 2016 12:02:16 +0000 (12 13:02 +0100)
committerRiku Voipio <riku.voipio@linaro.org>
Thu, 4 Aug 2016 13:36:26 +0000 (4 16:36 +0300)
tree87817914c04fd6135a714602e01bbb1cb2f690bd
parentba4b3f668abf1fcde204c8f3185ea6edeec6eaa3
linux-user: Don't write off end of new_utsname buffer

Use g_strlcpy() rather than strcpy() to copy the uname string
into the structure we return to the guest for the uname syscall.
This avoids overrunning the buffer if the user passed us an
overlong string via the QEMU command line.

We fix a comment typo while we're in the neighbourhood.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
linux-user/syscall.c