Skip to content
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
bug fix: Missed append case in splice generalization
  • Loading branch information
sgolemon committed Jun 11, 2025
commit d363d57df744c365704f7162aa0382a89fb8d9e5
5 changes: 5 additions & 0 deletions Zend/zend_composed_callable.c
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,11 @@ static zend_result zend_composed_callable_splice(HashTable *dst, HashTable *src,
}
} ZEND_HASH_FOREACH_END();

/* append splice */
if (insert && (zend_composed_callable_append(dst, insert) == FAILURE)) {
return FAILURE;
}

return SUCCESS;
}

Expand Down
Loading