From c0f7dc78f7567d41b4c0c8ba1696aebbd8a0a996 Mon Sep 17 00:00:00 2001 From: Pierangelo Masarati Date: Tue, 28 Aug 2007 23:00:36 +0000 Subject: [PATCH] fix uninit'ed var crasher --- servers/slapd/syncrepl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/servers/slapd/syncrepl.c b/servers/slapd/syncrepl.c index f4ff79c6ec..c400741ae9 100644 --- a/servers/slapd/syncrepl.c +++ b/servers/slapd/syncrepl.c @@ -1644,7 +1644,7 @@ syncrepl_message_to_entry( { Entry *e = NULL; BerElement *ber = NULL; - Modifications tmp; + Modifications tmp = { 0 }; Modifications *mod; Modifications **modtail = modlist; -- 2.39.5