diff --git a/cv9/snake.c b/cv9/snake.c index 5e32b38..a214496 100644 --- a/cv9/snake.c +++ b/cv9/snake.c @@ -12,7 +12,7 @@ struct snake* add_snake(struct snake* snake,int x,int y){ struct snake* remove_snake(struct snake* snake) { struct snake* head; struct snake* this = head; - if (head!= NULL) { + while (head!= NULL) { head = head->next; free(this); }