grub2/grub-core/disk/ieee1275
Peter Jones 65dfa11751 calloc: Use calloc() at most places
This modifies most of the places we do some form of:

  X = malloc(Y * Z);

to use calloc(Y, Z) instead.

Among other issues, this fixes:
  - allocation of integer overflow in grub_png_decode_image_header()
    reported by Chris Coulson,
  - allocation of integer overflow in luks_recover_key()
    reported by Chris Coulson,
  - allocation of integer overflow in grub_lvm_detect()
    reported by Chris Coulson.

Fixes: CVE-2020-14308

Signed-off-by: Peter Jones <pjones@redhat.com>
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>

Patch-Name: safe-alloc-3.patch
2020-07-24 22:42:16 +01:00
..
nand.c Rename grub_disk members 2019-03-25 15:14:52 +01:00
obdisk.c Rename grub_disk members 2019-03-25 15:14:52 +01:00
ofdisk.c calloc: Use calloc() at most places 2020-07-24 22:42:16 +01:00