[BACK]Return to rip.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / cdio

Diff for /src/usr.bin/cdio/rip.c between version 1.14 and 1.15

version 1.14, 2013/11/20 20:54:34 version 1.15, 2014/09/13 16:06:37
Line 244 
Line 244 
 {  {
         struct track_pair *tp;          struct track_pair *tp;
   
         while ((tp = TAILQ_FIRST(head)) != TAILQ_END(head)) {          while ((tp = TAILQ_FIRST(head)) != NULL) {
                 TAILQ_REMOVE(head, tp, list);                  TAILQ_REMOVE(head, tp, list);
                 free(tp);                  free(tp);
         }          }

Legend:
Removed from v.1.14  
changed lines
  Added in v.1.15