View | Details | Raw Unified | Return to bug 26572
Collapse All | Expand All

(-)src/arguments.c Sat Apr 14 20:53:31 2001 (-1 / +2 lines)
Lines 62-69 Link Here
62
   current = first;
62
   current = first;
63
63
64
   while(current!=NULL) {
64
   while(current!=NULL) {
65
      argument *next = current->next;
65
      free(current);
66
      free(current);
66
      current=current->next;
67
      current = next;
67
   }
68
   }
68
}
69
}

Return to bug 26572