diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-09-22 08:01:41 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-09-22 08:01:41 +0000 |
commit | 7676f402186203b6dc0a0f7581f6d1a545213300 (patch) | |
tree | b96a97bfcf1a38fcefa0e46e3c4e335ae7008cb3 | |
parent | 2de62cb06f5f7abdbcc55fc219bf86d8433125ec (diff) |
jean-claude Chauve fixed an LDAP bug
-rw-r--r-- | CHANGES | 4 | ||||
-rw-r--r-- | RELEASE-NOTES | 3 | ||||
-rw-r--r-- | lib/ldap.c | 2 |
3 files changed, 7 insertions, 2 deletions
@@ -6,6 +6,10 @@ Changelog +Daniel (22 September 2004) +- Jean-Claude Chauve fixed an LDAP crash when more than one record was + retrieved. + Daniel (19 September 2004) - Andreas Rieke pointed out that when attempting to connect to a host without a service on the specified port, curl_easy_perform() didn't properly provide diff --git a/RELEASE-NOTES b/RELEASE-NOTES index d48bdafbd..b6a3c51e8 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -15,7 +15,8 @@ This release includes the following changes: This release includes the following bugfixes: - o connect failures properly writes error message in errorbuffer + o LDAP crash when more than one record was received + o connect failures properly stores an error message in the errorbuffer o Rare Location:-following problem with bad original URL o -F can now add Content-Type on non-file sections o double Host: header when following Location: with replaced Host: fixed diff --git a/lib/ldap.c b/lib/ldap.c index 44029503f..27bccdc7c 100644 --- a/lib/ldap.c +++ b/lib/ldap.c @@ -350,8 +350,8 @@ CURLcode Curl_ldap(struct connectdata *conn) Curl_client_write(data, CLIENTWRITE_BODY, (char *)"\n", 1); (*ldap_memfree)(attribute); - (*ldap_memfree)(dn); } + (*ldap_memfree)(dn); if (ber) (*ber_free)(ber, 0); } |