diff options
| author | Joe Watkins <krakjoe@php.net> | 2019-03-12 00:37:28 +0100 |
|---|---|---|
| committer | Joe Watkins <krakjoe@php.net> | 2019-03-12 00:37:28 +0100 |
| commit | 99230784f5524f5387a8a6760bdaf9aa2eb91545 (patch) | |
| tree | 8e7b56d0e65d2d82c4d84c680cef7ac41b6825fa /ext/com_dotnet | |
| parent | dbcdf857968d72a7045610dccb6da650a1a8deda (diff) | |
| parent | 6529d7acd9912a609924633a43e6562799566225 (diff) | |
| download | php-git-99230784f5524f5387a8a6760bdaf9aa2eb91545.tar.gz | |
Merge branch 'PHP-7.4'
* PHP-7.4:
zend_weakrefs
Diffstat (limited to 'ext/com_dotnet')
| -rw-r--r-- | ext/com_dotnet/com_handlers.c | 2 | ||||
| -rw-r--r-- | ext/com_dotnet/com_saproxy.c | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/ext/com_dotnet/com_handlers.c b/ext/com_dotnet/com_handlers.c index 4f64b5502e..d00cb14f14 100644 --- a/ext/com_dotnet/com_handlers.c +++ b/ext/com_dotnet/com_handlers.c @@ -612,6 +612,8 @@ void php_com_object_free_storage(zend_object *object) zend_hash_destroy(obj->id_of_name_cache); FREE_HASHTABLE(obj->id_of_name_cache); } + + zend_object_std_dtor(object); } zend_object* php_com_object_clone(zend_object *object) diff --git a/ext/com_dotnet/com_saproxy.c b/ext/com_dotnet/com_saproxy.c index 225786bde8..ebef6430a3 100644 --- a/ext/com_dotnet/com_saproxy.c +++ b/ext/com_dotnet/com_saproxy.c @@ -369,6 +369,9 @@ static void saproxy_free_storage(zend_object *object) //??? } OBJ_RELEASE(&proxy->obj->zo); + + zend_object_std_dtor(object); + efree(proxy->indices); } |
