diff options
author | Ibrahn Sahir <ibrahn.sahir@gmail.com> | 2018-08-07 03:22:50 +0100 |
---|---|---|
committer | Ibrahn Sahir <ibrahn.sahir@gmail.com> | 2018-08-07 03:30:14 +0100 |
commit | 62f0dd9d57b2409206838bee240f30643852f1f0 (patch) | |
tree | 7fadc94b27894948200531c8d004da601639b1b7 /core/ustring.cpp | |
parent | 80a8636aa3739822b1ebbbad39f932a176ec158d (diff) | |
download | redot-engine-62f0dd9d57b2409206838bee240f30643852f1f0.tar.gz |
removed some surplus null appends that got typoed in 0e29f7974b59e4440cf02e1388fb9d8ab2b5c5fd
A couple of null appends got typoed to append a '0' character instead.
Removed them here since String already takes care of the null terminator for us.
Diffstat (limited to 'core/ustring.cpp')
-rw-r--r-- | core/ustring.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/core/ustring.cpp b/core/ustring.cpp index 84613610a9..96d142d85b 100644 --- a/core/ustring.cpp +++ b/core/ustring.cpp @@ -3881,8 +3881,6 @@ String String::percent_decode() const { pe += c; } - pe += '0'; - return String::utf8(pe.ptr()); } |