Fix a bug in refpool.

This commit is contained in:
Jonathan Schleifer 2012-09-30 04:57:00 +02:00
parent 0654f53b0f
commit e661734b9a

View file

@ -76,6 +76,9 @@ dtor(void *ptr)
free(pool->data);
top = pool->prev;
if (top != NULL)
top->next = NULL;
}
bool