[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 a214bbdc5a
commit ccc1d51634

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;