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

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

version 1.10, 2015/02/09 11:35:41 version 1.11, 2015/02/09 11:39:17
Line 431 
Line 431 
                         return;                          return;
                 }                  }
   
         q = (struct chain *) malloc(sizeof(struct chain));          q = malloc(sizeof(struct chain));
         if (q == NULL)          if (q == NULL)
                 err(1, NULL);                  err(1, NULL);
         q->nextp = namechain;          q->nextp = namechain;
Line 1586 
Line 1586 
         }          }
         size += sizetab(p1);          size += sizetab(p1);
         size += sizetab(p2);          size += sizetab(p2);
         back = (struct mactab *)calloc(size+2, sizeof(struct mactab));          back = calloc(size+2, sizeof(struct mactab));
         if (back == NULL)          if (back == NULL)
                 err(1, NULL);                  err(1, NULL);
   

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