]> git.saurik.com Git - cycript.git/blobdiff - Internal.hpp
Don't crash if ivar_getTypeEncoding returns NULL.
[cycript.git] / Internal.hpp
index abb48eda52198f30a74e394ed674bc599063c341..cf357086deaad9f5c2c875f5c02a8244dd9a8cfc 100644 (file)
@@ -73,8 +73,9 @@ struct Type_privateData :
     Type_privateData(sig::Type *type) :
         ffi_(NULL)
     {
-        if (type != NULL)
-            Set(type);
+        // XXX: just in case I messed up migrating
+        _assert(type != NULL);
+        Set(type);
     }
 
     Type_privateData(sig::Type *type, ffi_type *ffi) {
@@ -189,6 +190,7 @@ struct Functor :
     }
 
     static JSStaticFunction const * const StaticFunctions;
+    static JSStaticValue const * const StaticValues;
 }; }
 
 struct Closure_privateData :