fix conditionals
authoreric <eric@openbsd.org>
Thu, 8 Oct 2015 14:08:44 +0000 (14:08 +0000)
committereric <eric@openbsd.org>
Thu, 8 Oct 2015 14:08:44 +0000 (14:08 +0000)
ok deraadt@

lib/libc/asr/getaddrinfo.c
lib/libc/asr/getaddrinfo_async.c

index b6ce8a9..37fe2d4 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: getaddrinfo.c,v 1.8 2015/10/08 13:55:56 deraadt Exp $ */
+/*     $OpenBSD: getaddrinfo.c,v 1.9 2015/10/08 14:08:44 eric Exp $    */
 /*
  * Copyright (c) 2012 Eric Faurot <eric@openbsd.org>
  *
@@ -32,7 +32,7 @@ getaddrinfo(const char *hostname, const char *servname,
        struct asr_result ar;
        int              saved_errno = errno;
 
-       if (hints && (hints->ai_flags & AI_NUMERICHOST) == 0)
+       if (hints == NULL || (hints->ai_flags & AI_NUMERICHOST) == 0)
                res_init();
 
        as = getaddrinfo_async(hostname, servname, hints, NULL);
index 0a411ad..11e180b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: getaddrinfo_async.c,v 1.47 2015/10/08 13:55:56 deraadt Exp $  */
+/*     $OpenBSD: getaddrinfo_async.c,v 1.48 2015/10/08 14:08:44 eric Exp $     */
 /*
  * Copyright (c) 2012 Eric Faurot <eric@openbsd.org>
  *
@@ -88,7 +88,7 @@ getaddrinfo_async(const char *hostname, const char *servname,
        struct asr_query        *as;
        char                     alias[MAXDNAME];
 
-       if (hints && (hints->ai_flags & AI_NUMERICHOST) == 0)
+       if (hints == NULL || (hints->ai_flags & AI_NUMERICHOST) == 0)
                ac = _asr_use_resolver(asr);
        else
                ac = _asr_no_resolver();