From 04f46aa880853c369928028ecdd4e06670921161 Mon Sep 17 00:00:00 2001 From: Howard Chu Date: Wed, 7 Feb 2007 00:41:15 +0000 Subject: [PATCH] ITS#4832 fix unint'd var --- servers/slapd/syncrepl.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/servers/slapd/syncrepl.c b/servers/slapd/syncrepl.c index 29454e8090..cb14169c8f 100644 --- a/servers/slapd/syncrepl.c +++ b/servers/slapd/syncrepl.c @@ -799,6 +799,7 @@ do_syncrep2( } if ( !syncCookie_req.ctxcsn ) { match = -1; + m = 0; } else if ( !syncCookie.ctxcsn ) { match = 1; } else { @@ -945,6 +946,7 @@ do_syncrep2( if ( !syncCookie_req.ctxcsn ) { match = -1; + m = 0; } else if ( !syncCookie.ctxcsn ) { match = 1; } else { -- 2.39.5