From: Jay Freeman (saurik) Date: Tue, 21 Jan 2014 15:24:22 +0000 (-0800) Subject: Fix crash when trying to use specifier without int. X-Git-Tag: v0.9.500~12 X-Git-Url: https://git.saurik.com/cycript.git/commitdiff_plain/22e0b32a8b98fcc5620e1299248855de762df7e8?hp=8aebacfe9ffe9da4f932aac51cf4430e0d624df7 Fix crash when trying to use specifier without int. --- diff --git a/Cycript.yy.in b/Cycript.yy.in index 8368f81..f4c1ffd 100644 --- a/Cycript.yy.in +++ b/Cycript.yy.in @@ -1449,7 +1449,7 @@ IntegerType IntegerTypeOpt : IntegerType { $$ = $1; } - | + | { $$ = CYNew CYTypeVariable("int"); } ; PrimitiveType