svn commit: samba r19012 - in branches/SAMBA_3_0/source/libgpo: .

vlendec at samba.org vlendec at samba.org
Sat Sep 30 17:20:03 GMT 2006


Author: vlendec
Date: 2006-09-30 17:20:02 +0000 (Sat, 30 Sep 2006)
New Revision: 19012

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

Log:
Fix an uninitialized variable
Modified:
   branches/SAMBA_3_0/source/libgpo/gpo_filesync.c


Changeset:
Modified: branches/SAMBA_3_0/source/libgpo/gpo_filesync.c
===================================================================
--- branches/SAMBA_3_0/source/libgpo/gpo_filesync.c	2006-09-30 14:12:02 UTC (rev 19011)
+++ branches/SAMBA_3_0/source/libgpo/gpo_filesync.c	2006-09-30 17:20:02 UTC (rev 19012)
@@ -40,7 +40,8 @@
 		       const char *unix_path)
 {
 	NTSTATUS result;
-	int fnum, fd;
+	int fnum;
+	int fd = 0;
 	char *data = NULL;
 	static int io_bufsize = 64512;
 	int read_size = io_bufsize;



More information about the samba-cvs mailing list