summaryrefslogtreecommitdiff
path: root/Lisp/method-invocation.lisp
diff options
context:
space:
mode:
authorMatthias Benkard <code@mail.matthias.benkard.de>2008-02-18 22:05:52 +0100
committerMatthias Benkard <code@mail.matthias.benkard.de>2008-02-18 22:05:52 +0100
commit38938b79024c89ccbadd631e53b73797a98b0fb8 (patch)
treef9e86dd4b739d17b7549a2776f58ef62fbda8b52 /Lisp/method-invocation.lisp
parent57d0a7ece7f65a56c09b331fc2af12561632423f (diff)
Do not allow foreign methods to return arrays.
darcs-hash:60f115fc6d14d462f11dc77e1c97b68753f52e90
Diffstat (limited to 'Lisp/method-invocation.lisp')
-rw-r--r--Lisp/method-invocation.lisp6
1 files changed, 5 insertions, 1 deletions
diff --git a/Lisp/method-invocation.lisp b/Lisp/method-invocation.lisp
index 0227db0..c16e20d 100644
--- a/Lisp/method-invocation.lisp
+++ b/Lisp/method-invocation.lisp
@@ -460,13 +460,17 @@ easier to use with __apply__.
return-c-type)
receiver
selector))
- ((struct union array)
+ ((struct union)
;; The caller is responsible for preventing the return
;; value from being garbage-collected by setting
;; FOREIGN-VALUE-LISP-MANAGED-P to false.
(make-struct-wrapper objc-struct-return-value-cell
return-type
t))
+ ((array)
+ (error "Method ~A of object ~A tried to return an array. ~
+ It must be mistaken."
+ selector receiver))
((:void) (values))
(otherwise (cffi:mem-ref objc-return-value-cell
return-c-type))))))))