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

Diff for /mandoc/term.c between version 1.166 and 1.167

version 1.166, 2010/07/26 22:26:05 version 1.167, 2010/08/20 01:02:07
Line 83  term_alloc(enum termenc enc)
Line 83  term_alloc(enum termenc enc)
         p = calloc(1, sizeof(struct termp));          p = calloc(1, sizeof(struct termp));
         if (NULL == p) {          if (NULL == p) {
                 perror(NULL);                  perror(NULL);
                 exit(EXIT_FAILURE);                  exit(MANDOCLEVEL_SYSERR);
         }          }
   
         p->enc = enc;          p->enc = enc;
Line 577  adjbuf(struct termp *p, size_t sz)
Line 577  adjbuf(struct termp *p, size_t sz)
         p->buf = realloc(p->buf, p->maxcols);          p->buf = realloc(p->buf, p->maxcols);
         if (NULL == p->buf) {          if (NULL == p->buf) {
                 perror(NULL);                  perror(NULL);
                 exit(EXIT_FAILURE);                  exit(MANDOCLEVEL_SYSERR);
         }          }
 }  }
   

Legend:
Removed from v.1.166  
changed lines
  Added in v.1.167

CVSweb