mirror of
https://github.com/curl/curl.git
synced 2026-06-01 22:04:15 +03:00
fixed warning about uninitialized.
This commit is contained in:
parent
ccba0d10b6
commit
29ac001aa6
1 changed files with 1 additions and 1 deletions
|
|
@ -136,7 +136,7 @@ CURLcode Curl_ldap(struct connectdata *conn, bool *done)
|
|||
{
|
||||
CURLcode status = CURLE_OK;
|
||||
int rc = 0;
|
||||
LDAP *server;
|
||||
LDAP *server = NULL;
|
||||
LDAPURLDesc *ludp = NULL;
|
||||
LDAPMessage *result = NULL;
|
||||
LDAPMessage *entryIterator;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue