mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
[ion/storage] fix use of unicode method
This commit is contained in:
@@ -422,7 +422,7 @@ bool Storage::FullNameCompliant(const char * fullName) {
|
||||
if (*dotChar == 0) {
|
||||
return false;
|
||||
}
|
||||
if (UTF8Helper::CodePointSearch(dotChar+1, k_dotChar) == 0) {
|
||||
if (*(UTF8Helper::CodePointSearch(dotChar+1, k_dotChar)) == 0) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user