* grub-core/commands/hashsum.c: Remove unneeded memset (zalloc already

covers it).
This commit is contained in:
Vladimir Serbinenko 2013-11-12 00:58:46 +01:00
parent 65ddb30016
commit a1ef7718c9
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2013-11-12 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/commands/hashsum.c: Remove unneeded memset (zalloc already
covers it).
2013-11-12 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/commands/hashsum.c: Remove variable length arrays.

View file

@ -73,7 +73,6 @@ hash_file (grub_file_t file, const gcry_md_spec_t *hash, void *result)
if (!readbuf || !context)
goto fail;
grub_memset (context, 0, sizeof (context));
hash->init (context);
while (1)
{