From 1d0437c95b7d91ad91b9cd14026b7c7996ef9358 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vedat=20G=C3=BCnel?= Date: Tue, 19 Jan 2021 15:14:25 +0300 Subject: Fix String.ends_with() for empty string arguments --- core/string/ustring.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'core') diff --git a/core/string/ustring.cpp b/core/string/ustring.cpp index 21336a99ec..6b6d0a8ab4 100644 --- a/core/string/ustring.cpp +++ b/core/string/ustring.cpp @@ -3074,11 +3074,16 @@ int String::rfindn(const String &p_str, int p_from) const { } bool String::ends_with(const String &p_string) const { + int l = p_string.length(); + if (l == 0) { + return true; + } + int pos = rfind(p_string); if (pos == -1) { return false; } - return pos + p_string.length() == length(); + return pos + l == length(); } bool String::begins_with(const String &p_string) const { -- cgit v1.2.3