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

Diff for /src/usr.bin/cvs/rcs.c between version 1.150 and 1.151

version 1.150, 2006/03/27 15:26:12 version 1.151, 2006/03/27 16:01:18
Line 251 
Line 251 
 static void     rcs_freepdata(struct rcs_pdata *);  static void     rcs_freepdata(struct rcs_pdata *);
 static int      rcs_gettok(RCSFILE *);  static int      rcs_gettok(RCSFILE *);
 static int      rcs_pushtok(RCSFILE *, const char *, int);  static int      rcs_pushtok(RCSFILE *, const char *, int);
 static int      rcs_growbuf(RCSFILE *);  static void     rcs_growbuf(RCSFILE *);
 static int      rcs_strprint(const u_char *, size_t, FILE *);  static int      rcs_strprint(const u_char *, size_t, FILE *);
   
 static char*   rcs_expand_keywords(char *, struct rcs_delta *, char *,  static char*   rcs_expand_keywords(char *, struct rcs_delta *, char *,
Line 2334 
Line 2334 
                         pdp->rp_tlen++;                          pdp->rp_tlen++;
                         if (bp == pdp->rp_bufend - 1) {                          if (bp == pdp->rp_bufend - 1) {
                                 len = bp - pdp->rp_buf;                                  len = bp - pdp->rp_buf;
                                 if (rcs_growbuf(rfp) < 0) {                                  rcs_growbuf(rfp);
                                         type = RCS_TOK_ERR;  
                                         break;  
                                 }  
                                 bp = pdp->rp_buf + len;                                  bp = pdp->rp_buf + len;
                         }                          }
                 }                  }
Line 2370 
Line 2367 
                         pdp->rp_tlen++;                          pdp->rp_tlen++;
                         if (bp == pdp->rp_bufend - 1) {                          if (bp == pdp->rp_bufend - 1) {
                                 len = bp - pdp->rp_buf;                                  len = bp - pdp->rp_buf;
                                 if (rcs_growbuf(rfp) < 0) {                                  rcs_growbuf(rfp);
                                         type = RCS_TOK_ERR;  
                                         break;  
                                 }  
                                 bp = pdp->rp_buf + len;                                  bp = pdp->rp_buf + len;
                         }                          }
                 }                  }
Line 2432 
Line 2426 
  * Attempt to grow the internal parse buffer for the RCS file <rf> by   * Attempt to grow the internal parse buffer for the RCS file <rf> by
  * RCS_BUFEXTSIZE.   * RCS_BUFEXTSIZE.
  * In case of failure, the original buffer is left unmodified.   * In case of failure, the original buffer is left unmodified.
  * Returns 0 on success, or -1 on failure.  
  */   */
 static int  static void
 rcs_growbuf(RCSFILE *rf)  rcs_growbuf(RCSFILE *rf)
 {  {
         void *tmp;          void *tmp;
         struct rcs_pdata *pdp = (struct rcs_pdata *)rf->rf_pdata;          struct rcs_pdata *pdp = (struct rcs_pdata *)rf->rf_pdata;
   
         tmp = xrealloc(pdp->rp_buf, pdp->rp_blen + RCS_BUFEXTSIZE);          tmp = xrealloc(pdp->rp_buf, pdp->rp_blen + RCS_BUFEXTSIZE);
         if (tmp == NULL) {  
                 rcs_errno = RCS_ERR_ERRNO;  
                 cvs_log(LP_ERRNO, "failed to grow RCS parse buffer");  
                 return (-1);  
         }  
   
         pdp->rp_buf = (char *)tmp;          pdp->rp_buf = (char *)tmp;
         pdp->rp_blen += RCS_BUFEXTSIZE;          pdp->rp_blen += RCS_BUFEXTSIZE;
         pdp->rp_bufend = pdp->rp_buf + pdp->rp_blen - 1;          pdp->rp_bufend = pdp->rp_buf + pdp->rp_blen - 1;
   
         return (0);  
 }  }
   
 /*  /*

Legend:
Removed from v.1.150  
changed lines
  Added in v.1.151