@@ -4649,10 +4649,9 @@ PHPAPI void array_zip_values_and_scores(RedisSock *redis_sock, zval *z_tab, int
4649
4649
unsigned int tablekey_len ;
4650
4650
int hkey_len , hval_len ;
4651
4651
unsigned long idx ;
4652
- int type ;
4653
4652
zval * * z_key_pp , * * z_value_pp ;
4654
4653
4655
- type = zend_hash_get_current_key_ex (keytable , & tablekey , & tablekey_len , & idx , 0 , NULL );
4654
+ zend_hash_get_current_key_ex (keytable , & tablekey , & tablekey_len , & idx , 0 , NULL );
4656
4655
if (zend_hash_get_current_data (keytable , (void * * )& z_key_pp ) == FAILURE ) {
4657
4656
continue ; /* this should never happen, according to the PHP people. */
4658
4657
}
@@ -4666,7 +4665,7 @@ PHPAPI void array_zip_values_and_scores(RedisSock *redis_sock, zval *z_tab, int
4666
4665
zend_hash_move_forward (keytable );
4667
4666
4668
4667
/* fetch again */
4669
- type = zend_hash_get_current_key_ex (keytable , & tablekey , & tablekey_len , & idx , 0 , NULL );
4668
+ zend_hash_get_current_key_ex (keytable , & tablekey , & tablekey_len , & idx , 0 , NULL );
4670
4669
if (zend_hash_get_current_data (keytable , (void * * )& z_value_pp ) == FAILURE ) {
4671
4670
continue ; /* this should never happen, according to the PHP people. */
4672
4671
}
0 commit comments