X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/91fb60bf73ee8872552b4e80ca258e946f2550b0..824bc1ec28c62ea1d63622c46e1edfd911c38b64:/Pooling.hpp?ds=inline diff --git a/Pooling.hpp b/Pooling.hpp index 3af05ac..550a03a 100644 --- a/Pooling.hpp +++ b/Pooling.hpp @@ -118,7 +118,7 @@ class CYPool { char *strdup(const char *data) { if (data == NULL) return NULL; - return reinterpret_cast(memdup(data, strlen(data) + 1)); + return memdup(data, strlen(data) + 1, 1); } template