You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
double free of p->error. p->error was kept despite drainParser having freed it. Resolved by copying p->error
output terms were overlapping each other because the outArr was being allocated with malloc(n*sizeof(Term*)) rather than malloc(n*sizeof(Term)). Thanks valgrind.