mirror of
https://github.com/moparisthebest/curl
synced 2024-11-11 12:05:06 -05:00
fixed warning about uninitialized.
This commit is contained in:
parent
ccba0d10b6
commit
29ac001aa6
@ -136,7 +136,7 @@ CURLcode Curl_ldap(struct connectdata *conn, bool *done)
|
|||||||
{
|
{
|
||||||
CURLcode status = CURLE_OK;
|
CURLcode status = CURLE_OK;
|
||||||
int rc = 0;
|
int rc = 0;
|
||||||
LDAP *server;
|
LDAP *server = NULL;
|
||||||
LDAPURLDesc *ludp = NULL;
|
LDAPURLDesc *ludp = NULL;
|
||||||
LDAPMessage *result = NULL;
|
LDAPMessage *result = NULL;
|
||||||
LDAPMessage *entryIterator;
|
LDAPMessage *entryIterator;
|
||||||
|
Loading…
Reference in New Issue
Block a user