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

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

version 1.116, 2009/10/28 06:54:12 version 1.117, 2009/10/30 18:43:24
Line 77  term_alloc(enum termenc enc)
Line 77  term_alloc(enum termenc enc)
 {  {
         struct termp *p;          struct termp *p;
   
         if (NULL == (p = calloc(1, sizeof(struct termp))))          p = calloc(1, sizeof(struct termp));
                 return(NULL);          if (NULL == p) {
                   fprintf(stderr, "memory exhausted\n");
                   exit(EXIT_FAILURE);
           }
         p->maxrmargin = 78;          p->maxrmargin = 78;
         p->enc = enc;          p->enc = enc;
         return(p);          return(p);

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

CVSweb