d'oh, forgot to mark the string ref as freed

This commit is contained in:
Bill Currie 2005-05-01 00:01:28 +00:00
parent aa1e9a3de6
commit a0612e27b9

View file

@ -138,6 +138,7 @@ new_string_ref (progs_t *pr)
static void
free_string_ref (progs_t *pr, strref_t *sr)
{
sr->type = str_free;
if (sr->prev)
*sr->prev = sr->next;
sr->next = pr->free_string_refs;