1
0
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:
Gunter Knauf 2007-08-16 15:23:39 +00:00
parent ccba0d10b6
commit 29ac001aa6

View File

@ -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;