summaryrefslogtreecommitdiff
path: root/source4/ntvfs/ntvfs_generic.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2009-11-27 18:08:51 +1100
committerAndrew Tridgell <tridge@samba.org>2009-11-27 19:42:10 +1100
commit186ea099c5d07c8f229909bd94fafc179f8dcc2a (patch)
tree0f78a6d829fcb55bdc966bdf6cbc18c389cd1add /source4/ntvfs/ntvfs_generic.c
parentb62964d6feb47ccf14e3d14120c04bc435c47cbd (diff)
downloadsamba-186ea099c5d07c8f229909bd94fafc179f8dcc2a.tar.gz
samba-186ea099c5d07c8f229909bd94fafc179f8dcc2a.tar.bz2
samba-186ea099c5d07c8f229909bd94fafc179f8dcc2a.zip
s4-ntvfs: move valid lock range test from smb2 layer to generic code
win7 also fails invalid lock ranges on SMB
Diffstat (limited to 'source4/ntvfs/ntvfs_generic.c')
-rw-r--r--source4/ntvfs/ntvfs_generic.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/source4/ntvfs/ntvfs_generic.c b/source4/ntvfs/ntvfs_generic.c
index d564db72ff..3319539b63 100644
--- a/source4/ntvfs/ntvfs_generic.c
+++ b/source4/ntvfs/ntvfs_generic.c
@@ -1116,12 +1116,6 @@ NTSTATUS ntvfs_map_lock(struct ntvfs_module_context *ntvfs,
isunlock = false;
}
for (i=0;i<lck->smb2.in.lock_count;i++) {
- if (lck->smb2.in.locks[i].length > 1 &&
- lck->smb2.in.locks[i].offset +
- lck->smb2.in.locks[i].length <
- lck->smb2.in.locks[i].offset) {
- return NT_STATUS_INVALID_LOCK_RANGE;
- }
if (lck->smb2.in.locks[i].flags == SMB2_LOCK_FLAG_NONE) {
return NT_STATUS_INVALID_PARAMETER;
}