From 975cde38d8631f5e80bb54b3fbd87ce7d4aa2766 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Mon, 2 Jul 2012 00:05:49 -0700 Subject: [PATCH] Preempt accidental fall-through setting properties. --- ObjectiveC/Library.mm | 1 + 1 file changed, 1 insertion(+) diff --git a/ObjectiveC/Library.mm b/ObjectiveC/Library.mm index e7ed92d..2b494db 100644 --- a/ObjectiveC/Library.mm +++ b/ObjectiveC/Library.mm @@ -1786,6 +1786,7 @@ static bool Instance_setProperty(JSContextRef context, JSObjectRef object, JSStr if (CYImplements(self, _class, sel, false)) { JSValueRef arguments[1] = {value}; CYSendMessage(pool, context, self, NULL, sel, 1, arguments, false, exception); + return true; } if (CYInternal *internal = [CYInternal set:self inContext:context]) { -- 2.45.2