diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-07-01 21:13:35 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-07-01 21:13:35 +0000 |
commit | c5f57c58cae865ec63448282295bb078fc935d39 (patch) | |
tree | b43d57610de7ab644aec06ed14019087ae84f7e8 /sysdeps/posix/getaddrinfo.c | |
parent | 1d863dc0b41da22b5a06110d67b47a0f102cb639 (diff) | |
download | glibc-c5f57c58cae865ec63448282295bb078fc935d39.tar.gz glibc-c5f57c58cae865ec63448282295bb078fc935d39.tar.xz glibc-c5f57c58cae865ec63448282295bb078fc935d39.zip |
Update.
1999-07-01 Andreas Jaeger <aj@arthur.rhein-neckar.de> * inet/rcmd.c (__icheckhost): Fix typo in last patch. 1999-07-01 Andreas Jaeger <aj@arthur.rhein-neckar.de> * wcsmbs/wcschr.c (wcschr): Fix last patch: Add missing semicolon. * wcsmbs/wcsrchr.c (wcsrchr): Likewise. 1999-07-01 Andreas Jaeger <aj@arthur.rhein-neckar.de> * posix/wordexp.c (parse_tilde): Handle failing call to get.*_r functions correctly for non-existing entry. * sysdeps/posix/cuserid.c (cuserid): Likewise. * sysdeps/posix/getaddrinfo.c (gaih_inet_serv): Likewise.
Diffstat (limited to 'sysdeps/posix/getaddrinfo.c')
-rw-r--r-- | sysdeps/posix/getaddrinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/posix/getaddrinfo.c b/sysdeps/posix/getaddrinfo.c index f43aa03d1f..6810963357 100644 --- a/sysdeps/posix/getaddrinfo.c +++ b/sysdeps/posix/getaddrinfo.c @@ -206,7 +206,7 @@ gaih_inet_serv (const char *servicename, struct gaih_typeproto *tp, r = __getservbyname_r (servicename, tp->name, &ts, tmpbuf, tmpbuflen, &s); - if (r) + if (r || s == NULL) { if (errno == ERANGE) tmpbuflen *= 2; |