From: Jay Freeman (saurik) Date: Wed, 23 Dec 2015 13:40:52 +0000 (-0800) Subject: CYPoolCode put the code in the wrong (local) pool. X-Git-Tag: v0.9.590~149 X-Git-Url: https://git.saurik.com/cycript.git/commitdiff_plain/8409b00dd7d878ec81e49accdd902e441680424a CYPoolCode put the code in the wrong (local) pool. --- diff --git a/Library.cpp b/Library.cpp index 2fffade..47da272 100644 --- a/Library.cpp +++ b/Library.cpp @@ -138,7 +138,7 @@ CYUTF8String CYPoolCode(CYPool &pool, std::streambuf &stream) { std::stringbuf str; CYOutput out(str, options); out << *driver.script_; - return $pool.strdup(str.str().c_str()); + return pool.strdup(str.str().c_str()); } CYUTF8String CYPoolCode(CYPool &pool, CYUTF8String code) {