diff --git a/cv4/a_train.c b/cv4/a_train.c index afaecb6..38d914d 100755 --- a/cv4/a_train.c +++ b/cv4/a_train.c @@ -52,9 +52,9 @@ struct car* clear_train(struct car* first, const char* target) { } } while( this->next->next != NULL){ - if(strcmp(this->value, target) == 0){ + if(strcmp(this->next->value, target) == 0){ this->next == this->next->next; - free(this); + free(this->next); return first; } else {