From: Jay Freeman (saurik) Date: Mon, 20 Jan 2014 12:43:32 +0000 (-0800) Subject: Attempt to garbage collect before using choose(). X-Git-Tag: v0.9.500~24 X-Git-Url: https://git.saurik.com/cycript.git/commitdiff_plain/1cf12770640ddf1ea2e0656fec69d61b7389dc3c?ds=sidebyside Attempt to garbage collect before using choose(). --- diff --git a/ObjectiveC/Library.mm b/ObjectiveC/Library.mm index 742e3ef..a31c971 100644 --- a/ObjectiveC/Library.mm +++ b/ObjectiveC/Library.mm @@ -2305,6 +2305,8 @@ static JSValueRef choose(JSContextRef context, JSObjectRef object, JSObjectRef _ if (count != 1) throw CYJSError(context, "choose() takes a class argument"); + CYGarbageCollect(context); + CYPool pool; Class _class(CYCastNSObject(&pool, context, arguments[0]));