File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -464,9 +464,9 @@ PHPDBG_WATCH(array) /* {{{ */
464
464
465
465
void phpdbg_watch_HashTable_dtor (zval * * zv ) {
466
466
phpdbg_btree_result * result ;
467
- zval_ptr_dtor_wrapper (zv );
468
467
TSRMLS_FETCH ();
469
468
469
+ zval_ptr_dtor_wrapper (zv );
470
470
471
471
if ((result = phpdbg_btree_find (& PHPDBG_G (watchpoint_tree ), (zend_ulong )* zv ))) {
472
472
phpdbg_watchpoint_t * watch = result -> ptr ;
@@ -772,9 +772,11 @@ void phpdbg_list_watchpoints(TSRMLS_D) {
772
772
}
773
773
774
774
void phpdbg_watch_efree (void * ptr ) {
775
- phpdbg_btree_result * result = phpdbg_btree_find_closest ( & PHPDBG_G ( watchpoint_tree ), ( zend_ulong ) ptr ) ;
775
+ phpdbg_btree_result * result ;
776
776
TSRMLS_FETCH ();
777
777
778
+ result = phpdbg_btree_find_closest (& PHPDBG_G (watchpoint_tree ), (zend_ulong )ptr );
779
+
778
780
if (result ) {
779
781
phpdbg_watchpoint_t * watch = result -> ptr ;
780
782
You can’t perform that action at this time.
0 commit comments