X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fnetutl.c;h=2abbe86db8727703993fd8e6b41f4c3d43650f7d;hp=275c64f796e29321a39c86d709b42056cdb2f56e;hb=776dbf88df1911ec379c2fece0089fd2f5c71021;hpb=afd342ec0c2db5f4f60d29dfec87249c7503a1f5 diff --git a/src/netutl.c b/src/netutl.c index 275c64f7..2abbe86d 100644 --- a/src/netutl.c +++ b/src/netutl.c @@ -33,7 +33,7 @@ bool hostnames = false; Return NULL on failure. */ struct addrinfo *str2addrinfo(const char *address, const char *service, int socktype) { - struct addrinfo *ai, hint = {0}; + struct addrinfo *ai = NULL, hint = {0}; int err; hint.ai_family = addressfamily; @@ -55,7 +55,7 @@ struct addrinfo *str2addrinfo(const char *address, const char *service, int sock } sockaddr_t str2sockaddr(const char *address, const char *port) { - struct addrinfo *ai, hint = {0}; + struct addrinfo *ai = NULL, hint = {0}; sockaddr_t result; int err;