From: Jay Freeman (saurik) Date: Fri, 2 Oct 2009 04:30:18 +0000 (+0000) Subject: Fixed a stupid bug that caused ?: to crash. X-Git-Tag: v0.9.432~382 X-Git-Url: https://git.saurik.com/cycript.git/commitdiff_plain/91a416e4f1f0a34c4683355e7c323661ef9a0309 Fixed a stupid bug that caused ?: to crash. --- diff --git a/Parser.hpp b/Parser.hpp index 7de6b02..2821a61 100644 --- a/Parser.hpp +++ b/Parser.hpp @@ -889,6 +889,7 @@ struct CYCondition : CYExpression *false_; CYCondition(CYExpression *test, CYExpression *_true, CYExpression *_false) : + test_(test), true_(_true), false_(_false) {