mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Refactoring ext/intl (only compilerable now, far to finish :<)
This commit is contained in:
parent
7614fe810e
commit
b6e9c76d67
21 changed files with 126 additions and 152 deletions
|
@ -343,10 +343,9 @@ static void umsg_set_timezone(MessageFormatter_object *mfo,
|
|||
}
|
||||
|
||||
if (used_tz == NULL) {
|
||||
zval nullzv = zval_used_for_init,
|
||||
*zvptr = &nullzv;
|
||||
used_tz = timezone_process_timezone_argument(zvptr, &err,
|
||||
"msgfmt_format" TSRMLS_CC);
|
||||
zval nullzv, *zvptr = &nullzv;
|
||||
ZVAL_UNDEF(zvptr);
|
||||
used_tz = timezone_process_timezone_argument(zvptr, &err, "msgfmt_format" TSRMLS_CC);
|
||||
if (used_tz == NULL) {
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue