* grub-core/io/lzopio.c: Improve crypt context alignment.
This commit is contained in:
parent
139d67a82f
commit
c5ed9266fc
1 changed files with 2 additions and 2 deletions
|
@ -166,7 +166,7 @@ read_block_data (struct grub_lzopio *lzopio)
|
||||||
|
|
||||||
if (lzopio->ccheck_fun)
|
if (lzopio->ccheck_fun)
|
||||||
{
|
{
|
||||||
grub_uint8_t context[lzopio->ccheck_fun->contextsize];
|
grub_uint64_t context[(lzopio->ccheck_fun->contextsize + 7) / 8];
|
||||||
|
|
||||||
lzopio->ccheck_fun->init (context);
|
lzopio->ccheck_fun->init (context);
|
||||||
lzopio->ccheck_fun->write (context, lzopio->block.cdata,
|
lzopio->ccheck_fun->write (context, lzopio->block.cdata,
|
||||||
|
@ -212,7 +212,7 @@ uncompress_block (struct grub_lzopio *lzopio)
|
||||||
|
|
||||||
if (lzopio->ucheck_fun)
|
if (lzopio->ucheck_fun)
|
||||||
{
|
{
|
||||||
grub_uint8_t context[lzopio->ucheck_fun->contextsize];
|
grub_uint64_t context[(lzopio->ccheck_fun->contextsize + 7) / 8];
|
||||||
|
|
||||||
lzopio->ucheck_fun->init (context);
|
lzopio->ucheck_fun->init (context);
|
||||||
lzopio->ucheck_fun->write (context, lzopio->block.udata,
|
lzopio->ucheck_fun->write (context, lzopio->block.udata,
|
||||||
|
|
Loading…
Reference in a new issue