summaryrefslogtreecommitdiff
path: root/functions.m
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-08-08 00:37:09 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-08-08 00:37:09 +0200
commitae62369312153b5e0f11eb8284a057f70b1647e7 (patch)
tree999f7346d887008a0d9a71e3f03019c705b6a3c4 /functions.m
parent728d1fa3acdf0e64b397c54913fb67d25e5a6b84 (diff)
MLKInterpretedFunctionTrampoline: nullify() values before putting them into the argument array.
Diffstat (limited to 'functions.m')
-rw-r--r--functions.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.m b/functions.m
index 67b4361..8383e06 100644
--- a/functions.m
+++ b/functions.m
@@ -397,7 +397,7 @@ id MLKInterpretedFunctionTrampoline (void *target, ...)
va_start (ap, target);
while ((arg = va_arg (ap, id)) != MLKEndOfArgumentsMarker)
{
- [arguments addObject:arg];
+ [arguments addObject:nullify(arg)];
}
va_end (ap);