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

Diff for /src/usr.bin/mg/macro.c between version 1.10 and 1.11

version 1.10, 2005/11/18 20:56:53 version 1.11, 2005/12/20 06:17:36
Line 37 
Line 37 
         if (maclhead != NULL) {          if (maclhead != NULL) {
                 for (lp1 = maclhead->l_fp; lp1 != maclhead; lp1 = lp2) {                  for (lp1 = maclhead->l_fp; lp1 != maclhead; lp1 = lp2) {
                         lp2 = lp1->l_fp;                          lp2 = lp1->l_fp;
                         free((char *)lp1);                          free(lp1);
                 }                  }
                 free((char *)lp1);                  free(lp1);
         }          }
   
         if ((maclhead = lp1 = lalloc(0)) == NULL)          if ((maclhead = lp1 = lalloc(0)) == NULL)

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11