The following code causes CLISP to core on Windows XP. I think perhaps there is 
a bug in CFFI as Lispworks does not crash with the same code.

- CLISP "2.38 (2006-01-24)"
- CFFI "cffi-061220.tar.gz" 


(defclass a-test () ())

(defmethod initialize-instance :after ((self a-test) &key)
  (cffi:finalize self (lambda ()
                        nil)))

(dotimes (i 10000)
  (make-instance 'a-test))




_______________________________________________
cffi-devel mailing list
cffi-devel@common-lisp.net
http://common-lisp.net/cgi-bin/mailman/listinfo/cffi-devel

Reply via email to