By taking advantage of the recently-added hash_table_remove function.
With this change, all existing tests are now valgrind-clean.
| HASH_UNDEF IDENTIFIER NEWLINE {
macro_t *macro = hash_table_find (parser->defines, $2);
if (macro) {
- /* XXX: Need hash table to support a real way
- * to remove an element rather than prefixing
- * a new node with data of NULL like this. */
- hash_table_insert (parser->defines, NULL, $2);
+ hash_table_remove (parser->defines, $2);
talloc_free (macro);
}
talloc_free ($2);