]> git.saurik.com Git - cycript.git/blobdiff - Pooling.hpp
Attach FFI closure deallocation to Functor's pool.
[cycript.git] / Pooling.hpp
index 3af05acf2ae74d11ef28bdf41c1bfe4849ac69c0..c7d7ae306dbc5657fb341da6c239e4e2b5d355ea 100644 (file)
@@ -118,7 +118,7 @@ class CYPool {
     char *strdup(const char *data) {
         if (data == NULL)
             return NULL;
-        return reinterpret_cast<char *>(memdup(data, strlen(data) + 1));
+        return reinterpret_cast<char *>(memdup(data, strlen(data) + 1, 1));
     }
 
     template <typename Type_>