mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-26 07:19:16 +08:00
Remove some unneeded checks in Guile code
The Guile code generally checks to see if an htab is non-null before destroying it. However, the registry code already ensures this, so we can change these checks to asserts and simplify the code a little.
This commit is contained in:
@ -97,11 +97,9 @@ struct bkscm_deleter
|
||||
|
||||
void operator() (htab_t htab)
|
||||
{
|
||||
if (htab != NULL)
|
||||
{
|
||||
htab_traverse_noresize (htab, bkscm_mark_block_invalid, NULL);
|
||||
htab_delete (htab);
|
||||
}
|
||||
gdb_assert (htab != nullptr);
|
||||
htab_traverse_noresize (htab, bkscm_mark_block_invalid, NULL);
|
||||
htab_delete (htab);
|
||||
}
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user