]> git.sur5r.net Git - openldap/commitdiff
fix uninit'ed var crasher
authorPierangelo Masarati <ando@openldap.org>
Tue, 28 Aug 2007 23:00:36 +0000 (23:00 +0000)
committerPierangelo Masarati <ando@openldap.org>
Tue, 28 Aug 2007 23:00:36 +0000 (23:00 +0000)
servers/slapd/syncrepl.c

index f4ff79c6ec3ec729204048e738cbb5f1fc6de073..c400741ae9b46bf4cfc370c3dfcbe251c00a9ae1 100644 (file)
@@ -1644,7 +1644,7 @@ syncrepl_message_to_entry(
 {
        Entry           *e = NULL;
        BerElement      *ber = NULL;
-       Modifications   tmp;
+       Modifications   tmp = { 0 };
        Modifications   *mod;
        Modifications   **modtail = modlist;