Merge pull request #41187 from bruvzg/fix_repeat_null_termination

Add missing NULL termination to the String::repeat function.
This commit is contained in:
Rémi Verschelde 2020-08-11 16:37:01 +02:00 committed by GitHub
commit abf019d810
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -3071,6 +3071,7 @@ String String::repeat(int p_count) const {
const CharType *src = this->c_str();
new_string.resize(length() * p_count + 1);
new_string[length() * p_count] = 0;
for (int i = 0; i < p_count; i++)
for (int j = 0; j < length(); j++)