Fix redundant constant values.

I had forgotten to add the new value to the hash table. Oops.
This commit is contained in:
Bill Currie 2012-11-20 13:33:57 +09:00
parent 4b503c7f72
commit 06a62be1d5

View file

@ -109,6 +109,7 @@ find_value (const ex_value_t *val)
return value;
value = new_value ();
*value = *val;
Hash_AddElement (value_table, value);
return value;
}