1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
From 8baff8f03e07d8e02304d0c888d0bb21ad2eeb01 Mon Sep 17 00:00:00 2001
From: Jeff Genovy <29107334+jefgen@users.noreply.github.com>
Date: Wed, 17 Oct 2018 19:47:35 -0700
Subject: [PATCH] ICU-20208 uspoof.cpp function checkImpl should be static,
regenerate urename.h
(cherry picked from commit 9ec2c332c1c9156323944ea2b15c2b91952efae4)
---
common/unicode/urename.h | 1 -
i18n/uspoof.cpp | 2 +-
2 files changed, 1 insertion(+), 2 deletions(-)
diff --git a/common/unicode/urename.h b/common/unicode/urename.h
index 5812173e39c..0512be3b6e5 100644
--- a/common/unicode/urename.h
+++ b/common/unicode/urename.h
@@ -110,7 +110,6 @@
#define _UTF7Data U_ICU_ENTRY_POINT_RENAME(_UTF7Data)
#define _UTF8Data U_ICU_ENTRY_POINT_RENAME(_UTF8Data)
#define allowedHourFormatsCleanup U_ICU_ENTRY_POINT_RENAME(allowedHourFormatsCleanup)
-#define checkImpl U_ICU_ENTRY_POINT_RENAME(checkImpl)
#define cmemory_cleanup U_ICU_ENTRY_POINT_RENAME(cmemory_cleanup)
#define dayPeriodRulesCleanup U_ICU_ENTRY_POINT_RENAME(dayPeriodRulesCleanup)
#define deleteAllowedHourFormats U_ICU_ENTRY_POINT_RENAME(deleteAllowedHourFormats)
diff --git a/i18n/uspoof.cpp b/i18n/uspoof.cpp
index 8e3d69ede2b..66f228f037a 100644
--- a/i18n/uspoof.cpp
+++ b/i18n/uspoof.cpp
@@ -547,7 +547,7 @@ uspoof_checkUnicodeString(const USpoofChecker *sc,
return uspoof_check2UnicodeString(sc, id, NULL, status);
}
-int32_t checkImpl(const SpoofImpl* This, const UnicodeString& id, CheckResult* checkResult, UErrorCode* status) {
+static int32_t checkImpl(const SpoofImpl* This, const UnicodeString& id, CheckResult* checkResult, UErrorCode* status) {
U_ASSERT(This != NULL);
U_ASSERT(checkResult != NULL);
checkResult->clear();
|