Revision 89eb4d8d25722a0a0194cf7fa47ba602e32a6da7 authored by Vitaly Kuznetsov on 19 August 2019, 14:44:09 UTC, committed by Sasha Levin on 20 August 2019, 15:29:53 UTC
When building hv_kvp_daemon GCC-8.3 complains:

hv_kvp_daemon.c: In function ‘kvp_get_ip_info.constprop’:
hv_kvp_daemon.c:812:30: warning: ‘ip_buffer’ may be used uninitialized in this function [-Wmaybe-uninitialized]
  struct hv_kvp_ipaddr_value *ip_buffer;

this seems to be a false positive: we only use ip_buffer when
op == KVP_OP_GET_IP_INFO and it is only unset when op == KVP_OP_ENUMERATE.

Silence the warning by initializing ip_buffer to NULL.

Signed-off-by: Vitaly Kuznetsov <vkuznets@redhat.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
1 parent d09bc83
History
File Mode Size
Kconfig -rw-r--r-- 117 bytes
Makefile -rw-r--r-- 138 bytes
dir.c -rw-r--r-- 42.5 KB
file.c -rw-r--r-- 25.8 KB
inode.c -rw-r--r-- 8.4 KB
kernfs-internal.h -rw-r--r-- 3.5 KB
mount.c -rw-r--r-- 9.5 KB
symlink.c -rw-r--r-- 3.3 KB

back to top