aboutsummaryrefslogtreecommitdiff
path: root/core/ustring.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'core/ustring.cpp')
-rw-r--r--core/ustring.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/ustring.cpp b/core/ustring.cpp
index 2e907381f..abda1f1a3 100644
--- a/core/ustring.cpp
+++ b/core/ustring.cpp
@@ -612,6 +612,8 @@ String String::get_slicec(CharType p_splitter, int p_slice) const {
if (p_slice==count) {
return substr(prev,i-prev);
+ } else if (c[i]==0) {
+ return String();
} else {
count++;
prev=i+1;