X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=blobdiff_plain;f=correct.c;h=6f234b0a2e985608aa777127370bd65259fca927;hp=526e42c3b81a79524c948429a47a0953055c839a;hb=8c08897749366bd83a9a623727aca2927257d4cf;hpb=d7a47eb5f99b18b1f29b4425f1ebc7c0971445c6 diff --git a/correct.c b/correct.c index 526e42c..6f234b0 100644 --- a/correct.c +++ b/correct.c @@ -502,11 +502,13 @@ void correct_init(correction_t *c) { correct_pool_new(); c->edits = NULL; + c->lens = NULL; } void correct_free(correction_t *c) { vec_free(c->edits); + vec_free(c->lens); correct_pool_delete(); }