Skip to content

Commit 4757104

Browse files
committed
MFZE1
1 parent 95347cd commit 4757104

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Zend/zend.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,8 @@ static void print_hash(HashTable *ht, int indent)
8484
zval **tmp;
8585
char *string_key;
8686
HashPosition iterator;
87-
unsigned long num_key, str_len;
87+
ulong num_key;
88+
uint str_len;
8889
int i;
8990

9091
for (i=0; i<indent; i++) {

Zend/zend_execute_API.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,8 @@ ZEND_API int zval_update_constant(zval **pp, void *arg TSRMLS_DC)
314314
} else if (p->type == IS_CONSTANT_ARRAY) {
315315
zval **element;
316316
char *str_index;
317-
ulong str_index_len, num_index;
317+
uint str_index_len;
318+
ulong num_index;
318319

319320
SEPARATE_ZVAL(pp);
320321
p = *pp;

0 commit comments

Comments
 (0)