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

Diff for /src/usr.bin/sndiod/utils.c between version 1.2 and 1.3

version 1.2, 2016/01/08 16:17:31 version 1.3, 2016/05/25 05:39:50
Line 163 
Line 163 
 void  void
 xfree(void *p)  xfree(void *p)
 {  {
   #ifdef DEBUG
           if (p == NULL) {
                   log_puts("xfree with NULL arg\n");
                   panic();
           }
   #endif
         free(p);          free(p);
 }  }
   

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3