Skip to content

Commit 50c47b5

Browse files
authored
pre gcc 11 require a statement before a declaration after a label
1 parent 55aa4ec commit 50c47b5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

deepclone.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3141,7 +3141,7 @@ PHP_FUNCTION(deepclone_hydrate)
31413141
real_name = NULL; /* don't free — it's prop_key */
31423142
}
31433143

3144-
add_to_scope:
3144+
add_to_scope:;
31453145
/* Add to scoped_props[scope_str][real_name] = &prop_val */
31463146
zval *scope_bucket = zend_hash_find(scoped_props, scope_str);
31473147
if (!scope_bucket) {

0 commit comments

Comments
 (0)