[BACK]Return to term.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/term.c between version 1.115 and 1.116

version 1.115, 2009/10/27 08:26:12 version 1.116, 2009/10/28 06:54:12
Line 77  term_alloc(enum termenc enc)
Line 77  term_alloc(enum termenc enc)
 {  {
         struct termp *p;          struct termp *p;
   
         if (NULL == (p = malloc(sizeof(struct termp))))          if (NULL == (p = calloc(1, sizeof(struct termp))))
                 return(NULL);                  return(NULL);
         memset(p, 0, sizeof(struct termp));  
         p->maxrmargin = 78;          p->maxrmargin = 78;
         p->enc = enc;          p->enc = enc;
         return(p);          return(p);

Legend:
Removed from v.1.115  
changed lines
  Added in v.1.116

CVSweb