diff options
author | Hoa V. DINH <dinh.viet.hoa@gmail.com> | 2016-04-19 08:08:04 -0700 |
---|---|---|
committer | Hoa V. DINH <dinh.viet.hoa@gmail.com> | 2016-04-19 08:08:04 -0700 |
commit | 983184224ddef74a1b95538abb971f073379c535 (patch) | |
tree | 51d5af9ac1314e1d30f3cf3658288238276ab9dc | |
parent | dc9eec29eb121d3d37c42c0c8947e53998a16dba (diff) |
Fixed crasher
-rw-r--r-- | src/core/basetypes/MCString.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/basetypes/MCString.cpp b/src/core/basetypes/MCString.cpp index 98e27f64..7581343e 100644 --- a/src/core/basetypes/MCString.cpp +++ b/src/core/basetypes/MCString.cpp @@ -2370,9 +2370,9 @@ Array * String::componentsSeparatedByString(String * separator) break; } #else - int remaining = length() - (int) (p - mUnicodeChars); location = NULL; while (location == NULL) { + int remaining = length() - (int) (p - mUnicodeChars); location = (UChar *) memmem(p, remaining * sizeof(UChar), separator->unicodeCharacters(), separator->length() * sizeof(UChar)); if (location == NULL) { break; |