diff options
author | Florian Weimer <fweimer@redhat.com> | 2017-06-03 08:37:13 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2017-06-03 08:37:31 +0200 |
commit | 363911ce1313a246b7d33f0983a09e7ab2525b3a (patch) | |
tree | a35ff50d2244edd0ec9550c95bad86a905638904 | |
parent | 808fd9e6fe23f96078d4e297de1131117d3898bb (diff) | |
download | glibc-363911ce1313a246b7d33f0983a09e7ab2525b3a.tar glibc-363911ce1313a246b7d33f0983a09e7ab2525b3a.tar.gz glibc-363911ce1313a246b7d33f0983a09e7ab2525b3a.tar.bz2 glibc-363911ce1313a246b7d33f0983a09e7ab2525b3a.zip |
getaddrinfo: Eliminate another strdup call
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sysdeps/posix/getaddrinfo.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2017-06-03 Florian Weimer <fweimer@redhat.com> + + * sysdeps/posix/getaddrinfo.c (gaih_inet): Call __strdup instead + of strdup. + 2017-06-02 H.J. Lu <hongjiu.lu@intel.com> * sysdeps/x86/cacheinfo.c (__x86_shared_non_temporal_threshold): diff --git a/sysdeps/posix/getaddrinfo.c b/sysdeps/posix/getaddrinfo.c index a8b5bb541e..a8bdd9a182 100644 --- a/sysdeps/posix/getaddrinfo.c +++ b/sysdeps/posix/getaddrinfo.c @@ -732,7 +732,7 @@ gaih_inet (const char *name, const struct gaih_service *service, (*pat)->name = NULL; else if (canonbuf == NULL) { - canonbuf = strdup (air->canon); + canonbuf = __strdup (air->canon); if (canonbuf == NULL) { result = -EAI_MEMORY; |