@@ -874,14 +874,6 @@ static void zend_file_cache_serialize_class(zval *zv,
874
874
SERIALIZE_PTR (ce -> iterator_funcs_ptr -> zf_next );
875
875
SERIALIZE_PTR (ce -> iterator_funcs_ptr );
876
876
}
877
-
878
- if (ce -> arrayaccess_funcs_ptr ) {
879
- SERIALIZE_PTR (ce -> arrayaccess_funcs_ptr -> zf_offsetget );
880
- SERIALIZE_PTR (ce -> arrayaccess_funcs_ptr -> zf_offsetexists );
881
- SERIALIZE_PTR (ce -> arrayaccess_funcs_ptr -> zf_offsetset );
882
- SERIALIZE_PTR (ce -> arrayaccess_funcs_ptr -> zf_offsetunset );
883
- SERIALIZE_PTR (ce -> arrayaccess_funcs_ptr );
884
- }
885
877
if (ce -> dimension_handlers ) {
886
878
SERIALIZE_PTR (ce -> dimension_handlers -> read_dimension );
887
879
SERIALIZE_PTR (ce -> dimension_handlers -> has_dimension );
@@ -1711,13 +1703,6 @@ static void zend_file_cache_unserialize_class(zval *zv,
1711
1703
UNSERIALIZE_PTR (ce -> iterator_funcs_ptr -> zf_current );
1712
1704
UNSERIALIZE_PTR (ce -> iterator_funcs_ptr -> zf_next );
1713
1705
}
1714
- if (ce -> arrayaccess_funcs_ptr ) {
1715
- UNSERIALIZE_PTR (ce -> arrayaccess_funcs_ptr );
1716
- UNSERIALIZE_PTR (ce -> arrayaccess_funcs_ptr -> zf_offsetget );
1717
- UNSERIALIZE_PTR (ce -> arrayaccess_funcs_ptr -> zf_offsetexists );
1718
- UNSERIALIZE_PTR (ce -> arrayaccess_funcs_ptr -> zf_offsetset );
1719
- UNSERIALIZE_PTR (ce -> arrayaccess_funcs_ptr -> zf_offsetunset );
1720
- }
1721
1706
if (ce -> dimension_handlers ) {
1722
1707
UNSERIALIZE_PTR (ce -> dimension_handlers );
1723
1708
UNSERIALIZE_PTR (ce -> dimension_handlers -> read_dimension );
0 commit comments