diff options
author | Anton Altaparmakov <aia21@cantab.net> | 2005-06-25 11:51:58 -0400 |
---|---|---|
committer | Anton Altaparmakov <aia21@cantab.net> | 2005-06-25 11:51:58 -0400 |
commit | 3bd1f4a173a3445f9919c21e775de2d8b9deacf8 (patch) | |
tree | 6b32056b5b63d41fc5d032318ed0f94dbc562288 /fs/ntfs/ChangeLog | |
parent | ca8fd7a0c6aa835e8014830b290cb965e85ac88e (diff) |
NTFS: Fix several occurences of a bug where we would perform 'var & ~const'
with a 64-bit variable and a int, i.e. 32-bit, constant. This causes
the higher order 32-bits of the 64-bit variable to be zeroed. To fix
this cast the 'const' to the same 64-bit type as 'var'.
Signed-off-by: Anton Altaparmakov <aia21@cantab.net>
Diffstat (limited to 'fs/ntfs/ChangeLog')
-rw-r--r-- | fs/ntfs/ChangeLog | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/ntfs/ChangeLog b/fs/ntfs/ChangeLog index c089bf0c02ac..a916c8b0697a 100644 --- a/fs/ntfs/ChangeLog +++ b/fs/ntfs/ChangeLog | |||
@@ -128,6 +128,10 @@ ToDo/Notes: | |||
128 | - Detect the case when Windows has been suspended to disk on the volume | 128 | - Detect the case when Windows has been suspended to disk on the volume |
129 | to be mounted and if this is the case do not allow (re)mounting | 129 | to be mounted and if this is the case do not allow (re)mounting |
130 | read-write. This is done by parsing hiberfil.sys if present. | 130 | read-write. This is done by parsing hiberfil.sys if present. |
131 | - Fix several occurences of a bug where we would perform 'var & ~const' | ||
132 | with a 64-bit variable and a int, i.e. 32-bit, constant. This causes | ||
133 | the higher order 32-bits of the 64-bit variable to be zeroed. To fix | ||
134 | this cast the 'const' to the same 64-bit type as 'var'. | ||
131 | 135 | ||
132 | 2.1.22 - Many bug and race fixes and error handling improvements. | 136 | 2.1.22 - Many bug and race fixes and error handling improvements. |
133 | 137 | ||