mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-29 11:09:34 -05:00
fix uninit'ed var crasher
This commit is contained in:
parent
a6fd7fa95a
commit
c0f7dc78f7
1 changed files with 1 additions and 1 deletions
|
|
@ -1644,7 +1644,7 @@ syncrepl_message_to_entry(
|
|||
{
|
||||
Entry *e = NULL;
|
||||
BerElement *ber = NULL;
|
||||
Modifications tmp;
|
||||
Modifications tmp = { 0 };
|
||||
Modifications *mod;
|
||||
Modifications **modtail = modlist;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue