@@ -86,7 +86,7 @@ IC_METHOD(hasBinaryProperty) {
86
86
UChar32 cp ;
87
87
zend_long prop ;
88
88
zend_string * string_codepoint ;
89
- zend_long int_codepoint ;
89
+ zend_long int_codepoint = 0 ;
90
90
91
91
ZEND_PARSE_PARAMETERS_START (2 , 2 )
92
92
Z_PARAM_STR_OR_LONG (string_codepoint , int_codepoint )
@@ -106,7 +106,7 @@ IC_METHOD(getIntPropertyValue) {
106
106
UChar32 cp ;
107
107
zend_long prop ;
108
108
zend_string * string_codepoint ;
109
- zend_long int_codepoint ;
109
+ zend_long int_codepoint = 0 ;
110
110
111
111
ZEND_PARSE_PARAMETERS_START (2 , 2 )
112
112
Z_PARAM_STR_OR_LONG (string_codepoint , int_codepoint )
@@ -214,7 +214,7 @@ IC_METHOD(getBlockCode) {
214
214
IC_METHOD (charName ) {
215
215
UChar32 cp ;
216
216
zend_string * string_codepoint ;
217
- zend_long int_codepoint ;
217
+ zend_long int_codepoint = 0 ;
218
218
UErrorCode error = U_ZERO_ERROR ;
219
219
zend_long nameChoice = U_UNICODE_CHAR_NAME ;
220
220
zend_string * buffer = NULL ;
@@ -294,7 +294,7 @@ static UBool enumCharNames_callback(enumCharNames_data *context,
294
294
IC_METHOD (enumCharNames ) {
295
295
UChar32 start , limit ;
296
296
zend_string * string_start , * string_limit ;
297
- zend_long int_start , int_limit ;
297
+ zend_long int_start = 0 , int_limit = 0 ;
298
298
enumCharNames_data context ;
299
299
zend_long nameChoice = U_UNICODE_CHAR_NAME ;
300
300
UErrorCode error = U_ZERO_ERROR ;
@@ -391,7 +391,7 @@ IC_METHOD(foldCase) {
391
391
UChar32 cp , ret ;
392
392
zend_long options = U_FOLD_CASE_DEFAULT ;
393
393
zend_string * string_codepoint ;
394
- zend_long int_codepoint ;
394
+ zend_long int_codepoint = 0 ;
395
395
396
396
ZEND_PARSE_PARAMETERS_START (2 , 2 )
397
397
Z_PARAM_STR_OR_LONG (string_codepoint , int_codepoint )
@@ -421,7 +421,7 @@ IC_METHOD(digit) {
421
421
zend_long radix = 10 ;
422
422
int ret ;
423
423
zend_string * string_codepoint ;
424
- zend_long int_codepoint ;
424
+ zend_long int_codepoint = 0 ;
425
425
426
426
ZEND_PARSE_PARAMETERS_START (1 , 2 )
427
427
Z_PARAM_STR_OR_LONG (string_codepoint , int_codepoint )
0 commit comments