File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 6
6
- Changed error level E_ERROR into E_WARNING in Soap extension methods
7
7
parameter validation. (Felipe)
8
8
9
+ - Fixed bug #46087 (DOMXPath - segfault on destruction of a cloned object).
10
+ (Ilia)
9
11
- Fixed bug #46086 (Segfault when accessing fileinfo class properties).
10
12
(Scott)
11
13
- Fixed bug #46072 (Compile failure under IRIX 6.5.30 building util.c) (Greg)
Original file line number Diff line number Diff line change @@ -965,8 +965,10 @@ void dom_xpath_objects_free_storage(void *object TSRMLS_DC)
965
965
intern -> ptr = NULL ;
966
966
}
967
967
968
- zend_hash_destroy (intern -> registered_phpfunctions );
969
- FREE_HASHTABLE (intern -> registered_phpfunctions );
968
+ if (intern -> registered_phpfunctions ) {
969
+ zend_hash_destroy (intern -> registered_phpfunctions );
970
+ FREE_HASHTABLE (intern -> registered_phpfunctions );
971
+ }
970
972
971
973
if (intern -> node_list ) {
972
974
zend_hash_destroy (intern -> node_list );
You can’t perform that action at this time.
0 commit comments