fs/zfscrypt: Add missing explicit cast.

Found by: Coverity scan.
This commit is contained in:
Vladimir Serbinenko 2015-01-27 16:35:37 +01:00
parent 0daf46fdbd
commit 916733ea6a

View file

@ -238,7 +238,7 @@ grub_gcm_decrypt (grub_crypto_cipher_handle_t cipher,
grub_crypto_xor (out + 16 * i, in + 16 * i, mul, csize);
}
for (j = 0; j < 8; j++)
mac[15 - j] ^= ((psize * 8) >> (8 * j));
mac[15 - j] ^= ((((grub_uint64_t) psize) * 8) >> (8 * j));
grub_gcm_mul (mac, h);
if (mac_out)