Skip to content

Commit 2fe63ff

Browse files
committed
ext/com_dotnet: Fix object handlers
1 parent 7260859 commit 2fe63ff

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

ext/com_dotnet/com_handlers.c

+1
Original file line numberDiff line numberDiff line change
@@ -514,6 +514,7 @@ zend_object_handlers php_com_object_handlers = {
514514
php_com_object_free_storage,
515515
zend_objects_destroy_object,
516516
php_com_object_clone,
517+
NULL, /* clone_with */
517518
com_property_read,
518519
com_property_write,
519520
com_read_dimension,

ext/com_dotnet/com_saproxy.c

+1
Original file line numberDiff line numberDiff line change
@@ -402,6 +402,7 @@ zend_object_handlers php_com_saproxy_handlers = {
402402
saproxy_free_storage,
403403
zend_objects_destroy_object,
404404
saproxy_clone,
405+
NULL, /* clone_with */
405406
saproxy_property_read,
406407
saproxy_property_write,
407408
saproxy_read_dimension,

0 commit comments

Comments
 (0)