Fix bug in ures 67/236567/2 accepted/tizen/unified/20200618.125948 submit/tizen/20200618.070233
authorHyunjee Kim <hj0426.kim@samsung.com>
Thu, 18 Jun 2020 06:30:59 +0000 (15:30 +0900)
committerHyunjee 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

index 64eff0f..800131b 100644 (file)
@@ -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);