summaryrefslogtreecommitdiff
path: root/ext/intl/php_intl.c
diff options
context:
space:
mode:
authorXinchen Hui <laruence@php.net>2014-06-28 20:14:12 +0800
committerXinchen Hui <laruence@php.net>2014-06-28 20:14:12 +0800
commite4e9e80067076074e3e6fd9fd2603ec7698c0d33 (patch)
treebf393a581a45ab21f333c9add28f1195829614c7 /ext/intl/php_intl.c
parentb6e9c76d67a8cfb397598ac354d9aeb9609ba1d2 (diff)
downloadphp-git-e4e9e80067076074e3e6fd9fd2603ec7698c0d33.tar.gz
Fixed segfault while starting up
Diffstat (limited to 'ext/intl/php_intl.c')
-rw-r--r--ext/intl/php_intl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/intl/php_intl.c b/ext/intl/php_intl.c
index 5b8a730c49..c1171add4b 100644
--- a/ext/intl/php_intl.c
+++ b/ext/intl/php_intl.c
@@ -910,7 +910,7 @@ PHP_MINIT_FUNCTION( intl )
/* For the default locale php.ini setting */
REGISTER_INI_ENTRIES();
- REGISTER_LONG_CONSTANT("INTL_MAX_LOCALE_LEN", INTL_MAX_LOCALE_LEN, CONST_CS);
+ REGISTER_LONG_CONSTANT("INTL_MAX_LOCALE_LEN", INTL_MAX_LOCALE_LEN, CONST_PERSISTENT | CONST_CS);
REGISTER_STRING_CONSTANT("INTL_ICU_VERSION", U_ICU_VERSION, CONST_PERSISTENT | CONST_CS);
#ifdef U_ICU_DATA_VERSION
REGISTER_STRING_CONSTANT("INTL_ICU_DATA_VERSION", U_ICU_DATA_VERSION, CONST_PERSISTENT | CONST_CS);