From: Jay Freeman (saurik) Date: Wed, 4 Nov 2009 03:23:01 +0000 (+0000) Subject: Removed a null-termination usage in Replace for concatenation of strings. X-Git-Tag: v0.9.432~193 X-Git-Url: https://git.saurik.com/cycript.git/commitdiff_plain/a14eb7025a69e6ed6fab72d4bb4eb8ed24cfff1f Removed a null-termination usage in Replace for concatenation of strings. --- diff --git a/Replace.cpp b/Replace.cpp index fe93557..df67f44 100644 --- a/Replace.cpp +++ b/Replace.cpp @@ -416,7 +416,7 @@ CYString *CYString::Concat(CYContext &context, CYString *rhs) const { memcpy(value, value_, size_); memcpy(value + size_, rhs->value_, rhs->size_); value[size] = '\0'; - return $S(value); + return $S(value, size); } CYNumber *CYString::Number(CYContext &context) {