X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/91fb60bf73ee8872552b4e80ca258e946f2550b0..4b645e23d2abde4de1ced347750b070f89b685c3:/Pooling.hpp 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