projects
/
platform
/
core
/
api
/
base-utils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
05b8a8f
)
Fix bug in ures
67/236567/2
accepted/tizen/unified/20200618.125948
submit/tizen/20200618.070233
author
Hyunjee Kim
<hj0426.kim@samsung.com>
Thu, 18 Jun 2020 06:30:59 +0000
(15:30 +0900)
committer
Hyunjee Kim
<hj0426.kim@samsung.com>
Thu, 18 Jun 2020 06:57:51 +0000
(15:57 +0900)
Change-Id: I0c81845244e8e749279a4533ff658c028de74cdc
Signed-off-by: Hyunjee Kim <hj0426.kim@samsung.com>
src/utils_i18n_ures.c
patch
|
blob
|
history
diff --git
a/src/utils_i18n_ures.c
b/src/utils_i18n_ures.c
index
64eff0f
..
800131b
100644
(file)
--- a/
src/utils_i18n_ures.c
+++ b/
src/utils_i18n_ures.c
@@
-121,7
+121,7
@@
int i18n_ures_get_binary(i18n_ures_h ures, int32_t *len, const uint8_t **binary_
i18n_error_code_e i18n_error;
UErrorCode icu_error = U_ZERO_ERROR;
- *binary_result = ures_getBinary(ures,
*
len, &icu_error);
+ *binary_result = ures_getBinary(ures, len, &icu_error);
ERR_MAPPING(icu_error, i18n_error);
I18N_ERR(i18n_error);