Author: vlendec Date: 2005-08-03 05:36:19 +0000 (Wed, 03 Aug 2005) New Revision: 8987
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=8987 Log: Fix an uninitialized variable Modified: trunk/source/passdb/pdb_ldap.c Changeset: Modified: trunk/source/passdb/pdb_ldap.c =================================================================== --- trunk/source/passdb/pdb_ldap.c 2005-08-03 05:29:34 UTC (rev 8986) +++ trunk/source/passdb/pdb_ldap.c 2005-08-03 05:36:19 UTC (rev 8987) @@ -3336,7 +3336,7 @@ LDAPMessage *entry = NULL; int count; int rc; - char **vals; + char **vals = NULL; const char *policy_attr = NULL; struct ldapsam_privates *ldap_state =
