[common] remove all casts around malloc

This commit is contained in:
Quantum
2021-08-15 18:56:30 -04:00
committed by Geoffrey McRae
parent 81c38e825c
commit 2de9e3e9be
7 changed files with 8 additions and 8 deletions

View File

@@ -89,7 +89,7 @@ static bool load_symbols(void)
}
long storage = bfd_get_symtab_upper_bound(crash.fd);
crash.syms = (asymbol **)malloc(storage);
crash.syms = malloc(storage);
crash.symCount = bfd_canonicalize_symtab(crash.fd, crash.syms);
if (crash.symCount < 0)
{