r10124: revert change for openmcl that broke clsql
[uffi.git] / src / primitives.lisp
index fbfc120c2d732625e8f7e820ed14ea3d0652628f..3eb0761f522e8a0495473d5397833f20e954b222 100644 (file)
@@ -277,15 +277,6 @@ supports takes advantage of this optimization."
   (let ((result (%convert-from-uffi-type type context)))
     (cond
      ((atom result) result)
-     ;; Arrays without size are really pointers to type on SBCL/CMUCL
-     #+sbcl
-     ((and (consp type) (= 2 (length type)) (eq :array (car type)))
-      (setf (car result) 'sb-alien:*)
-      result)
-     #+cmu
-     ((and (consp type) (= 2 (length type)) (eq :array (car type)))
-      (setf (car result) 'alien:*)
-      result)
      #+openmcl
      ((eq (car result) :address)
       (if (eq context :struct)