From: itojun Date: Mon, 13 Mar 2000 12:26:56 +0000 (+0000) Subject: fix error handling in yp case. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=a8f88a4cd4a1d04cc2b2155d61cd2250132ddcc4;p=openbsd fix error handling in yp case. --- diff --git a/lib/libc/net/getaddrinfo.c b/lib/libc/net/getaddrinfo.c index 2c10a020178..1038ce9d83e 100644 --- a/lib/libc/net/getaddrinfo.c +++ b/lib/libc/net/getaddrinfo.c @@ -1,4 +1,4 @@ -/* $OpenBSD: getaddrinfo.c,v 1.15 2000/02/25 04:41:41 itojun Exp $ */ +/* $OpenBSD: getaddrinfo.c,v 1.16 2000/03/13 12:26:56 itojun Exp $ */ /* * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. @@ -1407,7 +1407,8 @@ nextline: if (pai->ai_flags & AI_CANONNAME) (void)get_canonname(pai, res, canonname); } - } + } else + res0 = NULL; if (res0) { cur->ai_next = res0; while (cur && cur->ai_next)