From 32d76a5b57eec2142be5e773c59f9a2e8cfb273e Mon Sep 17 00:00:00 2001 From: Gisle Vanem Date: Wed, 9 Feb 2005 14:28:35 +0000 Subject: Set 'bits.close' in case of malloc fail. Don't free 'lud_dn' twice in case curl_unescape() fails. --- lib/ldap.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib/ldap.c') diff --git a/lib/ldap.c b/lib/ldap.c index 3afa81352..15c19b377 100644 --- a/lib/ldap.c +++ b/lib/ldap.c @@ -380,6 +380,7 @@ quit: /* no data to transfer */ Curl_Transfer(conn, -1, -1, FALSE, NULL, -1, NULL); + conn->bits.close = TRUE; return status; } @@ -474,9 +475,9 @@ static bool unescape_elements (LDAPURLDesc *ludp) char *new_dn = curl_unescape(dn, 0); free(dn); + ludp->lud_dn = new_dn; if (!new_dn) return (FALSE); - ludp->lud_dn = new_dn; } return (TRUE); } -- cgit v1.2.3