From: Jay Freeman (saurik) Date: Mon, 2 Jul 2012 07:05:49 +0000 (-0700) Subject: Preempt accidental fall-through setting properties. X-Git-Tag: v0.9.458~1 X-Git-Url: https://git.saurik.com/cycript.git/commitdiff_plain/975cde38d8631f5e80bb54b3fbd87ce7d4aa2766?ds=inline Preempt accidental fall-through setting properties. --- 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]) {