This commit is contained in:
Maryna Kravtsova 2020-11-02 14:27:52 +01:00
parent acd98c9e47
commit 3caa2bbe73

View File

@ -43,13 +43,13 @@ void cancel_train(struct car* first) {
if(first == NULL){
return;
}
if(first->next == NULL){
free(first);
}
else if(first->next != NULL){
if(first->next != NULL){
cancel_train(first->next);
first->next = NULL;
}
if(first->next == NULL){
free(first);
}
}