check in portions of code is done on length rather than pointer

This commit is contained in:
Pierangelo Masarati 2004-04-05 17:25:22 +00:00
parent 44349f4ac6
commit 0b37fb4eb1

View file

@ -59,7 +59,9 @@ int passwd_extop(
return LDAP_STRONG_AUTH_REQUIRED;
}
qpw->rs_old.bv_len = 0;
qpw->rs_old.bv_val = NULL;
qpw->rs_new.bv_len = 0;
qpw->rs_new.bv_val = NULL;
qpw->rs_mods = NULL;
qpw->rs_modtail = NULL;