Unchecked returns of inet_pton in geoip_test.c
305 dns_geoip_elem_t elt;
306 struct in_addr in4;
307 isc_netaddr_t na;
308
CID 281437 (#1 of 1): Unchecked return value (CHECKED_RETURN)
1. check_return: Calling inet_pton without checking return value (as is done elsewhere 89 out of 91 times).
309 inet_pton(AF_INET, addr, &in4);
310 isc_netaddr_fromin(&na, &in4);
...
322 dns_geoip_elem_t elt;
323 struct in6_addr in6;
324 isc_netaddr_t na;
325
CID 281472 (#1 of 1): Unchecked return value (CHECKED_RETURN)
1. check_return: Calling inet_pton without checking return value (as is done elsewhere 89 out of 91 times).
326 inet_pton(AF_INET6, addr, &in6);
327 isc_netaddr_fromin6(&na, &in6);