Changeset 1114


Ignore:
Timestamp:
Jan 29, 2004, 11:16:51 PM (22 years ago)
Author:
bird
Message:

experimental fix to very long sst records.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/src/emxomf/stabshll.c

    • Property cvs2svn:cvs-rev changed from 1.30 to 1.31
    r1113 r1114  
    569569{
    570570  int len = sst.size - subrec_start - 2;
     571  /* -- experimental...
    571572  if (len > 1000)
    572573    error ("sst_end: Record too big");
     574  */
    573575  sst.buf[subrec_start] = (len >> 8) | 0x80;
    574576  sst.buf[subrec_start + 1] = 0xff & len;
     
    37203722    {
    37213723      int cch;
     3724      if (type != SST_tag2 && (cch = strlen(name)) > 250)
     3725          type = SST_tag2;
     3726
    37223727      sst_start (type);
    37233728      buffer_word (&sst, index);
    3724       if (type == SST_tag2 || (cch = strlen(name)) > 250)
     3729      if (type == SST_tag2)
    37253730        buffer_enc (&sst, name);
    37263731      else
Note: See TracChangeset for help on using the changeset viewer.