0.9.10.12:
authorJuho Snellman <jsnell@iki.fi>
Sat, 4 Mar 2006 21:07:48 +0000 (21:07 +0000)
committerJuho Snellman <jsnell@iki.fi>
Sat, 4 Mar 2006 21:07:48 +0000 (21:07 +0000)
The error branch in the win32 DLOPEN-OR-LOSE was calling
        SHARED-OBJECT-SAP instead of SHARED-OBJECT-HANDLE. (Patch from
        by Yaroslav Kavenchuk, sbcl-devel "Re: Where define shared-object-sap"
        on 2006-02-26).

src/code/win32-foreign-load.lisp
version.lisp-expr

index 5413825..a0bfe7a 100644 (file)
@@ -50,7 +50,7 @@
          (handle (loadlibrary file)))
     (aver file)
     (when (zerop handle)
-      (setf (shared-object-sap obj) nil)
+      (setf (shared-object-handle obj) nil)
       (error "Error opening shared object ~S:~%  ~A."
              file (getlasterror)))
     (setf (shared-object-handle obj) handle)
index d8904c2..5bfef3e 100644 (file)
@@ -17,4 +17,4 @@
 ;;; checkins which aren't released. (And occasionally for internal
 ;;; versions, especially for internal versions off the main CVS
 ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"0.9.10.11"
+"0.9.10.12"