diff options
| author | Stanislav Malyshev <stas@php.net> | 2016-10-04 21:28:40 -0700 |
|---|---|---|
| committer | Anatol Belski <ab@php.net> | 2016-10-12 13:11:16 +0200 |
| commit | 87a8240b5adc730153e6df54f33195aee1325e6f (patch) | |
| tree | 16400495cf1f42a2c4110b5227027d43534aaa12 | |
| parent | d1e878f2726e65502fdd992c5b57feeada57893f (diff) | |
| download | php-git-87a8240b5adc730153e6df54f33195aee1325e6f.tar.gz | |
Add more locale length checks, due to ICU bugs.
(cherry picked from commit d3eb58332af433982f1e2ae9095fb087974a95f2)
| -rw-r--r-- | ext/intl/locale/locale_methods.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ext/intl/locale/locale_methods.c b/ext/intl/locale/locale_methods.c index 32a70d2f7f..e2caacf9e9 100644 --- a/ext/intl/locale/locale_methods.c +++ b/ext/intl/locale/locale_methods.c @@ -406,6 +406,8 @@ static void get_icu_value_src_php( char* tag_name, INTERNAL_FUNCTION_PARAMETERS) if(loc_name_len == 0) { loc_name = intl_locale_get_default(); } + + INTL_CHECK_LOCALE_LEN(strlen(loc_name)); /* Call ICU get */ tag_value = get_icu_value_internal( loc_name , tag_name , &result ,0); @@ -1169,6 +1171,7 @@ PHP_FUNCTION(locale_get_all_variants) loc_name = intl_locale_get_default(); } + INTL_CHECK_LOCALE_LEN(strlen(loc_name)); array_init( return_value ); @@ -1277,6 +1280,9 @@ PHP_FUNCTION(locale_filter_matches) RETURN_TRUE; } + INTL_CHECK_LOCALE_LEN(strlen(loc_range)); + INTL_CHECK_LOCALE_LEN(strlen(lang_tag)); + if( boolCanonical ){ /* canonicalize loc_range */ can_loc_range=get_icu_value_internal( loc_range , LOC_CANONICALIZE_TAG , &result , 0); @@ -1558,6 +1564,8 @@ PHP_FUNCTION(locale_lookup) hash_arr = Z_ARRVAL_P(arr); + INTL_CHECK_LOCALE_LEN(strlen(loc_range)); + if( !hash_arr || zend_hash_num_elements( hash_arr ) == 0 ) { RETURN_EMPTY_STRING(); } |
