From ae62369312153b5e0f11eb8284a057f70b1647e7 Mon Sep 17 00:00:00 2001 From: Matthias Andreas Benkard Date: Fri, 8 Aug 2008 00:37:09 +0200 Subject: MLKInterpretedFunctionTrampoline: nullify() values before putting them into the argument array. --- functions.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'functions.m') 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); -- cgit v1.2.3