diff --git a/cv5/a_train.c b/cv5/a_train.c index e4dc4bb..af518c1 100644 --- a/cv5/a_train.c +++ b/cv5/a_train.c @@ -66,10 +66,9 @@ struct car* clear_train(struct car* first, const char* target) { while(prev->next->next != NULL){ int x = strcmp(first->value, target); if(x == 0){ - //first = NULL; first = first->next; - free(first); - return first->next; + free(prev); + return first; } x = strcmp(prev->next->value, target);