svn commit: samba r14983 - in branches/SAMBA_4_0/source/libnet: .

tridge at samba.org tridge at samba.org
Sat Apr 8 03:00:18 GMT 2006


Author: tridge
Date: 2006-04-08 03:00:12 +0000 (Sat, 08 Apr 2006)
New Revision: 14983

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=14983

Log:

fix an uninitialised var

Modified:
   branches/SAMBA_4_0/source/libnet/libnet_samsync_ldb.c


Changeset:
Modified: branches/SAMBA_4_0/source/libnet/libnet_samsync_ldb.c
===================================================================
--- branches/SAMBA_4_0/source/libnet/libnet_samsync_ldb.c	2006-04-08 02:58:54 UTC (rev 14982)
+++ branches/SAMBA_4_0/source/libnet/libnet_samsync_ldb.c	2006-04-08 03:00:12 UTC (rev 14983)
@@ -239,7 +239,7 @@
 	const struct dom_sid *user_sid;
 	struct ldb_message *msg;
 	struct ldb_message **msgs;
-	struct ldb_message **remote_msgs;
+	struct ldb_message **remote_msgs = NULL;
 	int ret, i;
 	uint32_t acb;
 	BOOL add = False;



More information about the samba-cvs mailing list