Stupid me forgot to change the pointer and free the old one.
@ -42,6 +42,8 @@ _TR_queueResize(TR_Queue this, size_t split)
VPSIZE(this->size - this->start));
this->start = GROWTH + this->start;
this->size = new_size;
TR_MEM_FREE(this->data);
this->data = new;
}
void