* grub-core/io/lzopio.c (uncompress_block): Fix use of incorrect
variable.
This commit is contained in:
parent
9079d3ed4e
commit
67639fd75e
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2012-01-30 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* grub-core/io/lzopio.c (uncompress_block): Fix use of incorrect
|
||||||
|
variable.
|
||||||
|
|
||||||
2012-01-29 Vladimir Serbinenko <phcoder@gmail.com>
|
2012-01-29 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
* grub-core/lib/posix_wrap/string.h (memchr): New function.
|
* grub-core/lib/posix_wrap/string.h (memchr): New function.
|
||||||
|
|
|
@ -212,7 +212,7 @@ uncompress_block (struct grub_lzopio *lzopio)
|
||||||
|
|
||||||
if (lzopio->ucheck_fun)
|
if (lzopio->ucheck_fun)
|
||||||
{
|
{
|
||||||
grub_uint64_t context[(lzopio->ccheck_fun->contextsize + 7) / 8];
|
grub_uint64_t context[(lzopio->ucheck_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