commit | 3bd1f4a173a3445f9919c21e775de2d8b9deacf8 | [log] [tgz] |
---|---|---|
author | Anton Altaparmakov <aia21@cantab.net> | Sat Jun 25 16:51:58 2005 +0100 |
committer | Anton Altaparmakov <aia21@cantab.net> | Sat Jun 25 16:51:58 2005 +0100 |
tree | 6b32056b5b63d41fc5d032318ed0f94dbc562288 | |
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>