vidcontrol: use calloc where appropriate

Reported by:	kib
This commit is contained in:
emaste 2016-11-05 11:19:55 +00:00
parent f2fa1b708a
commit a9ccbd410e

View File

@ -393,8 +393,8 @@ load_vt4mappingtable(unsigned int nmappings, FILE *f)
if (nmappings == 0)
return (NULL);
if ((t = malloc(sizeof *t * nmappings)) == NULL) {
warn("malloc");
if ((t = calloc(nmappings, sizeof(*t))) == NULL) {
warn("calloc");
return (NULL);
}