Peter Jones f725fa7cb2 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>
2020-07-29 16:55:47 +02:00
..
2017-02-03 13:01:34 +01:00
2017-05-08 20:53:28 +02:00
2020-07-29 16:55:47 +02:00
2020-07-29 16:55:47 +02:00
2018-12-12 14:51:26 +01:00
2019-03-25 15:08:49 +01:00
2019-02-25 14:01:59 +01:00
2020-07-29 16:55:47 +02:00
2012-02-12 03:52:17 +01:00
2019-03-25 15:14:52 +01:00
2019-04-09 10:03:29 +10:00
2020-07-29 16:55:47 +02:00
2012-02-26 22:49:24 +01:00
2020-07-29 16:55:47 +02:00
2020-07-29 16:55:47 +02:00
2010-05-06 11:34:04 +05:30