From a04bd1a5872f007061d90466bc64413f328a7ca8 Mon Sep 17 00:00:00 2001 From: dtc <dtc> Date: Tue, 13 Jan 1998 21:16:34 +0000 Subject: [PATCH] The alien object finalizer was being placed on the alien info, but this info may be shared among many alien objects making cancellation of the finalisation upon alien object deallocation problematic. Probably for this reason this cancellation had been disabled, however this often resulted in objects being freed twice and possibly live objects being freed. To fix this, the finalizer is now placed on the alien object rather than the alien info, and this finalizer is cancelled before the deallocation of the alien object to prevent repeated freeing. Problem tracked down thanks to a bug report and some experimentation by Andrei V. Elkin. --- code/alieneval.lisp | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/code/alieneval.lisp b/code/alieneval.lisp index 4ecc4e3ad..c8b8c04b8 100644 --- a/code/alieneval.lisp +++ b/code/alieneval.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/alieneval.lisp,v 1.41 1997/09/16 08:44:55 dtc Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/alieneval.lisp,v 1.42 1998/01/13 21:16:34 dtc Exp $") ;;; ;;; ********************************************************************** ;;; @@ -1706,8 +1706,14 @@ ;;;; Accessing local aliens. (defun make-local-alien (info) - (let ((alien (eval `(make-alien ,(local-alien-info-type info))))) - (finalize info #'(lambda () (free-alien alien))) + (let* ((alien (eval `(make-alien ,(local-alien-info-type info)))) + (alien-sap (alien-sap alien))) + (finalize + alien + #'(lambda () + (alien-funcall + (extern-alien "free" (function (values) system-area-pointer)) + alien-sap))) alien)) (defun note-local-alien-type (info alien) @@ -1751,8 +1757,7 @@ (defun dispose-local-alien (info alien) (declare (ignore info)) - #+nil - (cancel-finalization info) + (cancel-finalization alien) (free-alien alien)) -- GitLab