diff options
author | caryoscelus <caryoscelus@gmx.com> | 2016-08-26 10:42:01 +0300 |
---|---|---|
committer | caryoscelus <caryoscelus@gmx.com> | 2016-08-26 10:42:01 +0300 |
commit | 810fbb70aec2cbe03721c1f6291a81bbae1adc39 (patch) | |
tree | 79b06a623e07357ac561cd3b7d461b71ae2d929c | |
parent | 9c6175db11ff72603ae58789a462b33ec1e910f8 (diff) | |
download | redot-engine-810fbb70aec2cbe03721c1f6291a81bbae1adc39.tar.gz |
fix string iterator
Since strings are null-terminated, size() returns incorrect length,
so use length() instead.
fixes #6287
-rw-r--r-- | core/variant_op.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/variant_op.cpp b/core/variant_op.cpp index c537ed230f..fd64b58bd5 100644 --- a/core/variant_op.cpp +++ b/core/variant_op.cpp @@ -3046,7 +3046,7 @@ bool Variant::iter_next(Variant& r_iter,bool &valid) const { const String *str=reinterpret_cast<const String*>(_data._mem); int idx = r_iter; idx++; - if (idx >= str->size()) + if (idx >= str->length()) return false; r_iter = idx; return true; |