mirror of
https://github.com/php/php-src.git
synced 2025-08-18 15:08:55 +02:00
use more suitable types here, too
and simplify the loop
This commit is contained in:
parent
198c2ec5f0
commit
2334d8335b
1 changed files with 35 additions and 39 deletions
|
@ -219,7 +219,7 @@ PHP_NAMED_FUNCTION(zif_locale_get_default)
|
|||
/* {{{ proto static string Locale::setDefault( string $locale )
|
||||
Set default locale */
|
||||
/* }}} */
|
||||
/* {{{ proto static string locale_set_default( string $locale )
|
||||
/* {{{ proto sta tic string locale_set_default( string $locale )
|
||||
Set default locale */
|
||||
PHP_NAMED_FUNCTION(zif_locale_set_default)
|
||||
{
|
||||
|
@ -261,9 +261,9 @@ static zend_string* get_icu_value_internal( const char* loc_name , char* tag_nam
|
|||
zend_string* tag_value = NULL;
|
||||
int32_t tag_value_len = 512;
|
||||
|
||||
int singletonPos = 0;
|
||||
zend_off_t singletonPos = 0;
|
||||
char* mod_loc_name = NULL;
|
||||
int grOffset = 0;
|
||||
zend_off_t grOffset = 0;
|
||||
|
||||
int32_t buflen = 512;
|
||||
UErrorCode status = U_ZERO_ERROR;
|
||||
|
@ -435,10 +435,10 @@ static void get_icu_value_src_php( char* tag_name, INTERNAL_FUNCTION_PARAMETERS)
|
|||
}
|
||||
/* }}} */
|
||||
|
||||
/* {{{ proto static string Locale::getScript($locale)
|
||||
/* {{{ proto stat ic string Locale::getScript($locale)
|
||||
* gets the script for the $locale
|
||||
}}} */
|
||||
/* {{{ proto static string locale_get_script($locale)
|
||||
/* {{{ proto stati c string locale_get_script($locale)
|
||||
* gets the script for the $locale
|
||||
*/
|
||||
PHP_FUNCTION( locale_get_script )
|
||||
|
@ -450,7 +450,7 @@ PHP_FUNCTION( locale_get_script )
|
|||
/* {{{ proto static string Locale::getRegion($locale)
|
||||
* gets the region for the $locale
|
||||
}}} */
|
||||
/* {{{ proto static string locale_get_region($locale)
|
||||
/* {{{ p roto static string locale_get_region($locale)
|
||||
* gets the region for the $locale
|
||||
*/
|
||||
PHP_FUNCTION( locale_get_region )
|
||||
|
@ -992,17 +992,15 @@ PHP_FUNCTION(locale_compose)
|
|||
*/
|
||||
static zend_string* get_private_subtags(const char* loc_name)
|
||||
{
|
||||
zend_string* result =NULL;
|
||||
int singletonPos = 0;
|
||||
int len =0;
|
||||
zend_string* result = NULL;
|
||||
zend_off_t singletonPos = 0;
|
||||
size_t len = 0;
|
||||
const char* mod_loc_name =NULL;
|
||||
|
||||
if( loc_name && (len = strlen(loc_name)>0 ) ){
|
||||
mod_loc_name = loc_name ;
|
||||
len = strlen(mod_loc_name);
|
||||
while( (singletonPos = getSingletonPos(mod_loc_name))!= -1){
|
||||
|
||||
if( singletonPos!=-1){
|
||||
while( (singletonPos = getSingletonPos(mod_loc_name)) > -1){
|
||||
if( (*(mod_loc_name+singletonPos)=='x') || (*(mod_loc_name+singletonPos)=='X') ){
|
||||
/* private subtag start found */
|
||||
if( singletonPos + 2 == len){
|
||||
|
@ -1015,7 +1013,7 @@ static zend_string* get_private_subtags(const char* loc_name)
|
|||
break;
|
||||
}
|
||||
else{
|
||||
if( singletonPos + 1 >= len){
|
||||
if((size_t)(singletonPos + 1) >= len){
|
||||
/* String end */
|
||||
break;
|
||||
} else {
|
||||
|
@ -1024,8 +1022,6 @@ static zend_string* get_private_subtags(const char* loc_name)
|
|||
len = strlen(mod_loc_name);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
} /* end of while */
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue