[ion/storage] fix use of unicode method

This commit is contained in:
Léa Saviot
2019-01-29 17:39:46 +01:00
committed by Émilie Feral
parent 4c5251f04f
commit a7e7319e4e

View File

@@ -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;