summaryrefslogtreecommitdiff
path: root/source4/ntvfs
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2005-08-23 13:03:39 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:34:25 -0500
commite987658582b4c726c461bfb0230ec2db53a032d2 (patch)
tree0d3c00ccc4649e832527ee22f6525dbf23cdb97e /source4/ntvfs
parent42d692efe74e6ff4753d2b1a62c61bf3811df4d0 (diff)
downloadsamba-e987658582b4c726c461bfb0230ec2db53a032d2.tar.gz
samba-e987658582b4c726c461bfb0230ec2db53a032d2.tar.bz2
samba-e987658582b4c726c461bfb0230ec2db53a032d2.zip
r9517: fix compiler warning: status.v initialized variable used in line 375
tridge: what should be the correct error code? see rev 3239! metze (This used to be commit 27ec849718b97df2d6f30e2fbacaa0423e918862)
Diffstat (limited to 'source4/ntvfs')
-rw-r--r--source4/ntvfs/ipc/vfs_ipc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/ntvfs/ipc/vfs_ipc.c b/source4/ntvfs/ipc/vfs_ipc.c
index 2c148fbd0c..aa0909ceb6 100644
--- a/source4/ntvfs/ipc/vfs_ipc.c
+++ b/source4/ntvfs/ipc/vfs_ipc.c
@@ -372,7 +372,7 @@ static NTSTATUS ipc_read(struct ntvfs_module_context *ntvfs,
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);