@@ -315,7 +315,7 @@ PHPDBG_API void phpdbg_set_breakpoint_file(const char *path, size_t path_len, ze
315
315
ZEND_HASH_MAP_FOREACH_STR_KEY (& PHPDBG_G (file_sources ), file ) {
316
316
HashTable * fileht ;
317
317
318
- phpdbg_debug ("Compare against loaded %s\n" , file );
318
+ phpdbg_debug ("Compare against loaded %s\n" , ZSTR_VAL ( file ) );
319
319
320
320
if (!(pending = ((fileht = phpdbg_resolve_pending_file_break_ex (ZSTR_VAL (file ), ZSTR_LEN (file ), path_str , broken )) == NULL ))) {
321
321
new_break = * (phpdbg_breakfile_t * ) zend_hash_index_find_ptr (fileht , line_num );
@@ -378,7 +378,7 @@ PHPDBG_API HashTable *phpdbg_resolve_pending_file_break_ex(const char *file, uin
378
378
PHPDBG_G (flags ) &= ~PHPDBG_HAS_PENDING_FILE_BP ;
379
379
}
380
380
381
- phpdbg_debug ("compiled file: %s, cur bp file: %s\n" , file , cur );
381
+ phpdbg_debug ("compiled file: %s, cur bp file: %s\n" , file , ZSTR_VAL ( cur ) );
382
382
383
383
return master ;
384
384
}
@@ -395,7 +395,7 @@ PHPDBG_API void phpdbg_resolve_pending_file_break(const char *file) /* {{{ */
395
395
phpdbg_debug ("was compiled: %s\n" , file );
396
396
397
397
ZEND_HASH_MAP_FOREACH_STR_KEY_PTR (& PHPDBG_G (bp )[PHPDBG_BREAK_FILE_PENDING ], cur , fileht ) {
398
- phpdbg_debug ("check bp: %s\n" , cur );
398
+ phpdbg_debug ("check bp: %s\n" , ZSTR_VAL ( cur ) );
399
399
400
400
phpdbg_resolve_pending_file_break_ex (file , filelen , cur , fileht );
401
401
} ZEND_HASH_FOREACH_END ();
0 commit comments