]> git.saurik.com Git - cycript.git/blobdiff - Library.cpp
In trampoline, make $strlcpy not crash given NULL.
[cycript.git] / Library.cpp
index 74df5029d99e83216df8e0128f78a1c273bb37cb..816dab6cebb44a0d27d86eccec185797e45e1702 100644 (file)
@@ -191,9 +191,8 @@ double CYCastDouble(const char *value) {
     return CYCastDouble(value, strlen(value));
 }
 
-CYUTF8String CYPoolCode(CYPool &pool, CYUTF8String code) {
+CYUTF8String CYPoolCode(CYPool &pool, std::istream &stream) {
     CYLocalPool local;
-    CYStream stream(code.data, code.data + code.size);
     CYDriver driver(stream);
 
     cy::parser parser(driver);