It might be possible to hit md_end before md_begin is called, don't
segfault if so. Also, remove a useless check.
* gas/config/tc-ppc.c (insn_calloc): Remove needless overflow
check.
(ppc_md_end): Check ppc_hash before deleting. Clear ppc_hash.
static void *
insn_calloc (size_t n, size_t size)
{
- size_t amt;
- void *ret;
- if (gas_mul_overflow (n, size, &amt))
- {
- obstack_alloc_failed_handler ();
- abort ();
- }
- ret = obstack_alloc (&insn_obstack, amt);
+ size_t amt = n * size;
+ void *ret = obstack_alloc (&insn_obstack, amt);
memset (ret, 0, amt);
return ret;
}
void
ppc_md_end (void)
{
- htab_delete (ppc_hash);
- _obstack_free (&insn_obstack, NULL);
+ if (ppc_hash)
+ {
+ htab_delete (ppc_hash);
+ _obstack_free (&insn_obstack, NULL);
+ }
+ ppc_hash = NULL;
}
void