commit | 99f1d377988a47dcbd750f8e01e4bee921a24b75 | [log] [tgz] |
---|---|---|
author | Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de> | Fri Nov 06 16:39:57 1998 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Fri Nov 06 16:39:57 1998 +0000 |
tree | c1515bbf03db01df375b5ebfbfecdfe6182d734f | |
parent | e0e248eaee8865dae8ef5402c50993c1f8f87f5e [diff] [blame] |
Fixed an error in the implementation of FILE_ShareDeny.
diff --git a/files/file.c b/files/file.c index 78daca8..e4afe21 100644 --- a/files/file.c +++ b/files/file.c
@@ -415,7 +415,7 @@ return TRUE; test_ro_int24: - if (oldmode & OF_READ) + if (oldmode == OF_READ) return FALSE; /* Fall through */ fail_int24: @@ -425,7 +425,7 @@ return TRUE; test_ro_err05: - if (oldmode & OF_READ) + if (oldmode == OF_READ) return FALSE; /* fall through */ fail_error05: