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