From 8409b00dd7d878ec81e49accdd902e441680424a Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Wed, 23 Dec 2015 05:40:52 -0800 Subject: [PATCH] CYPoolCode put the code in the wrong (local) pool. --- Library.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.47.2