home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / bsd_srcs / usr.bin / lisp / lispnews / text0143.txt < prev    next >
Encoding:
Text File  |  1985-11-10  |  741 b   |  28 lines

  1.  
  2. A bug present in previous versions is also present in 38.66 of Franz.
  3. cfasl fails (in most cases) to close the file it reads from.
  4. Consequently, mysterious events occur when the maximum number of open
  5. file descriptors is reached.
  6.  
  7. The fix is made in the file ffasl.c. "close(fildes)" should be
  8. prepended to the two return sequences from (the Unix code for)
  9. Lcfasl:
  10.  
  11. ------------------------------------------------------------------
  12. Old:    146c146
  13.     <         {Restorestack(); return(nil);}
  14.     ---
  15. Fixed:    >         {close(fildes); Restorestack(); return(nil);}
  16.     149a150
  17.     >     close(fildes);
  18. ------------------------------------------------------------------
  19.  
  20.  
  21.     Tom Blenko
  22.     Metheus Corp.
  23.     ucbvax!tektronix!ogcvax!metheus!tombl
  24.     allegra!ogcvax!metheus!tombl
  25.  
  26.  
  27.  
  28.