Clang/Android complained
warning: address of array 'rgi6->iface' will always evaluate to 'true'
[-Wpointer-bool-conversion]
if (rgi6->iface)
iface is a char[16]; So its pointer is always true.
we do a CLEAR(rgi6) always before setting this struct and strcpy the
name into iface. So using strlen instead of checking for the pointer
should be the right fix.
Patch V2: use if(strlen > 0) instead of if(strlen)
Signed-off-by: Arne Schwabe <[email protected]>
---
src/openvpn/route.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/openvpn/route.c b/src/openvpn/route.c
index 3035fa89..1b5eacea 100644
--- a/src/openvpn/route.c
+++ b/src/openvpn/route.c
@@ -3350,7 +3350,7 @@ get_default_gateway_ipv6(struct route_ipv6_gateway_info
*rgi6,
rgi6->flags |= RGI_ADDR_DEFINED;
}
- if (rgi6->iface)
+ if (strlen(rgi6->iface) > 0)
{
rgi6->flags |= RGI_IFACE_DEFINED;
}
--
2.22.0
_______________________________________________
Openvpn-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/openvpn-devel