From a7e7319e4e61d04ffff290d3860bcd0053da4fc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9a=20Saviot?= Date: Tue, 29 Jan 2019 17:39:46 +0100 Subject: [PATCH] [ion/storage] fix use of unicode method --- ion/src/shared/storage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ion/src/shared/storage.cpp b/ion/src/shared/storage.cpp index e2b61ed72..e9ca40a02 100644 --- a/ion/src/shared/storage.cpp +++ b/ion/src/shared/storage.cpp @@ -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;