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

Diff for /src/usr.bin/sndiod/dev.c between version 1.20 and 1.21

version 1.20, 2015/11/23 12:24:21 version 1.21, 2015/11/25 18:47:12
Line 976 
Line 976 
                 return NULL;                  return NULL;
         }          }
         d = xmalloc(sizeof(struct dev));          d = xmalloc(sizeof(struct dev));
           d->path = xstrdup(path);
         d->num = dev_sndnum++;          d->num = dev_sndnum++;
   
         /*          /*
Line 1258 
Line 1259 
         }          }
         midi_del(d->midi);          midi_del(d->midi);
         *p = d->next;          *p = d->next;
           xfree(d->path);
         xfree(d);          xfree(d);
 }  }
   

Legend:
Removed from v.1.20  
changed lines
  Added in v.1.21