aboutsummaryrefslogtreecommitdiff
path: root/tests/tpm-crb-test.c
diff options
context:
space:
mode:
authorDaniel P. Berrangé <berrange@redhat.com>2019-05-01 15:50:52 +0100
committerLaurent Vivier <laurent@vivier.eu>2019-05-03 13:03:04 +0200
commit2d2023c3b99edb33ad4bb9791f70456ea1a1c049 (patch)
treebe55ffcca3d39af8505796cfcbc6686e0e223d71 /tests/tpm-crb-test.c
parent9176a58018642080ec1910b2be255c2f81f1e8e3 (diff)
sockets: avoid string truncation warnings when copying UNIX path
In file included from /usr/include/string.h:494, from include/qemu/osdep.h:101, from util/qemu-sockets.c:18: In function ‘strncpy’, inlined from ‘unix_connect_saddr.isra.0’ at util/qemu-sockets.c:925:5: /usr/include/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 108 equals destination size [-Wstringop-truncation] 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In function ‘strncpy’, inlined from ‘unix_listen_saddr.isra.0’ at util/qemu-sockets.c:880:5: /usr/include/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 108 equals destination size [-Wstringop-truncation] 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ We are already validating the UNIX socket path length earlier in the functions. If we save this string length when we first check it, then we can simply use memcpy instead of strcpy later, avoiding the gcc truncation warnings. Signed-off-by: Daniel P. Berrangé <berrange@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Stefano Garzarella <sgarzare@redhat.com> Message-Id: <20190501145052.12579-1-berrange@redhat.com> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'tests/tpm-crb-test.c')
0 files changed, 0 insertions, 0 deletions