Skip to content
Commit 146a1192 authored by David Howells's avatar David Howells
Browse files

afs: Fix the maths in afs_fs_store_data()



afs_fs_store_data() works out of the size of the write it's going to make,
but it uses 32-bit unsigned subtraction in one place that gets
automatically cast to loff_t.

However, if to < offset, then the number goes negative, but as the result
isn't signed, this doesn't get sign-extended to 64-bits when placed in a
loff_t.

Fix by casting the operands to loff_t.

Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
parent 2f5705a5
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment