This commit is contained in:
Maryna Kravtsova 2020-11-04 13:05:39 +01:00
parent 445ea708a1
commit 5145027ddd

View File

@ -76,10 +76,9 @@ struct car* clear_train(struct car* first, const char* target) {
int x = strcmp(prev->next->value, target);
if(x == 0){
free(prev->next);
//prev->next = NULL;
prev->next = NULL;
return first;
}
return first;
}