svn commit: samba r9517 - in branches/SAMBA_4_0/source/ntvfs/ipc: .

metze at samba.org metze at samba.org
Tue Aug 23 13:03:39 GMT 2005


Author: metze
Date: 2005-08-23 13:03:39 +0000 (Tue, 23 Aug 2005)
New Revision: 9517

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

Log:
fix compiler warning: status.v initialized variable used in line 375

tridge: what should be the correct error code?
        see rev 3239!

metze
Modified:
   branches/SAMBA_4_0/source/ntvfs/ipc/vfs_ipc.c


Changeset:
Modified: branches/SAMBA_4_0/source/ntvfs/ipc/vfs_ipc.c
===================================================================
--- branches/SAMBA_4_0/source/ntvfs/ipc/vfs_ipc.c	2005-08-23 11:54:38 UTC (rev 9516)
+++ branches/SAMBA_4_0/source/ntvfs/ipc/vfs_ipc.c	2005-08-23 13:03:39 UTC (rev 9517)
@@ -372,7 +372,7 @@
 	DATA_BLOB data;
 	uint16_t fnum;
 	struct pipe_state *p;
-	NTSTATUS status;
+	NTSTATUS status = NT_STATUS_FOOBAR;
 
 	if (rd->generic.level != RAW_READ_GENERIC) {
 		return ntvfs_map_read(req, rd, ntvfs);



More information about the samba-cvs mailing list