drop redundant checks

This commit is contained in:
Anatol Belski 2017-03-07 15:42:19 +01:00
parent c20ae623c2
commit fe8112e8f8

View file

@ -511,7 +511,6 @@ static void accel_copy_permanent_strings(zend_new_interned_string_func_t new_int
/* function table hash keys */ /* function table hash keys */
ZEND_HASH_FOREACH_BUCKET(CG(function_table), p) { ZEND_HASH_FOREACH_BUCKET(CG(function_table), p) {
if (Z_TYPE(p->val) == IS_UNDEF) continue;
if (p->key) { if (p->key) {
p->key = new_interned_string(p->key); p->key = new_interned_string(p->key);
} }
@ -540,7 +539,6 @@ static void accel_copy_permanent_strings(zend_new_interned_string_func_t new_int
ZEND_HASH_FOREACH_BUCKET(CG(class_table), p) { ZEND_HASH_FOREACH_BUCKET(CG(class_table), p) {
zend_class_entry *ce; zend_class_entry *ce;
if (Z_TYPE(p->val) == IS_UNDEF) continue;
ce = (zend_class_entry*)Z_PTR(p->val); ce = (zend_class_entry*)Z_PTR(p->val);
if (p->key) { if (p->key) {
@ -554,8 +552,6 @@ static void accel_copy_permanent_strings(zend_new_interned_string_func_t new_int
ZEND_HASH_FOREACH_BUCKET(&ce->properties_info, q) { ZEND_HASH_FOREACH_BUCKET(&ce->properties_info, q) {
zend_property_info *info; zend_property_info *info;
if (Z_TYPE(q->val) == IS_UNDEF) continue;
info = (zend_property_info*)Z_PTR(q->val); info = (zend_property_info*)Z_PTR(q->val);
if (q->key) { if (q->key) {
@ -568,7 +564,6 @@ static void accel_copy_permanent_strings(zend_new_interned_string_func_t new_int
} ZEND_HASH_FOREACH_END(); } ZEND_HASH_FOREACH_END();
ZEND_HASH_FOREACH_BUCKET(&ce->function_table, q) { ZEND_HASH_FOREACH_BUCKET(&ce->function_table, q) {
if (Z_TYPE(q->val) == IS_UNDEF) continue;
if (q->key) { if (q->key) {
q->key = new_interned_string(q->key); q->key = new_interned_string(q->key);
} }
@ -578,7 +573,6 @@ static void accel_copy_permanent_strings(zend_new_interned_string_func_t new_int
} ZEND_HASH_FOREACH_END(); } ZEND_HASH_FOREACH_END();
ZEND_HASH_FOREACH_BUCKET(&ce->constants_table, q) { ZEND_HASH_FOREACH_BUCKET(&ce->constants_table, q) {
if (Z_TYPE(q->val) == IS_UNDEF) continue;
if (q->key) { if (q->key) {
q->key = new_interned_string(q->key); q->key = new_interned_string(q->key);
} }
@ -589,7 +583,6 @@ static void accel_copy_permanent_strings(zend_new_interned_string_func_t new_int
ZEND_HASH_FOREACH_BUCKET(EG(zend_constants), p) { ZEND_HASH_FOREACH_BUCKET(EG(zend_constants), p) {
zend_constant *c; zend_constant *c;
if (Z_TYPE(p->val) == IS_UNDEF) continue;
if (p->key) { if (p->key) {
p->key = new_interned_string(p->key); p->key = new_interned_string(p->key);
} }
@ -603,8 +596,6 @@ static void accel_copy_permanent_strings(zend_new_interned_string_func_t new_int
ZEND_HASH_FOREACH_BUCKET(CG(auto_globals), p) { ZEND_HASH_FOREACH_BUCKET(CG(auto_globals), p) {
zend_auto_global *auto_global; zend_auto_global *auto_global;
if (Z_TYPE(p->val) == IS_UNDEF) continue;
auto_global = (zend_auto_global*)Z_PTR(p->val);; auto_global = (zend_auto_global*)Z_PTR(p->val);;
zend_string_addref(auto_global->name); zend_string_addref(auto_global->name);