mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 17:19:43 -05:00
entry pointer 'p' must be initialized. Should fix ITS#31.
This commit is contained in:
parent
114a0cd339
commit
c97837277a
1 changed files with 1 additions and 1 deletions
|
|
@ -22,7 +22,7 @@ ldbm_back_delete(
|
|||
struct ldbminfo *li = (struct ldbminfo *) be->be_private;
|
||||
char *matched;
|
||||
char *pdn = NULL;
|
||||
Entry *e, *p;
|
||||
Entry *e, *p = NULL;
|
||||
|
||||
Debug(LDAP_DEBUG_ARGS, "==> ldbm_back_delete: %s\n", dn, 0, 0);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue