@@ -315,7 +315,7 @@ PHPDBG_API void phpdbg_set_breakpoint_file(const char *path, size_t path_len, ze
315315 ZEND_HASH_MAP_FOREACH_STR_KEY (& PHPDBG_G (file_sources ), file ) {
316316 HashTable * fileht ;
317317
318- phpdbg_debug ("Compare against loaded %s\n" , file );
318+ phpdbg_debug ("Compare against loaded %s\n" , ZSTR_VAL ( file ) );
319319
320320 if (!(pending = ((fileht = phpdbg_resolve_pending_file_break_ex (ZSTR_VAL (file ), ZSTR_LEN (file ), path_str , broken )) == NULL ))) {
321321 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
378378 PHPDBG_G (flags ) &= ~PHPDBG_HAS_PENDING_FILE_BP ;
379379 }
380380
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 ) );
382382
383383 return master ;
384384 }
@@ -395,7 +395,7 @@ PHPDBG_API void phpdbg_resolve_pending_file_break(const char *file) /* {{{ */
395395 phpdbg_debug ("was compiled: %s\n" , file );
396396
397397 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 ) );
399399
400400 phpdbg_resolve_pending_file_break_ex (file , filelen , cur , fileht );
401401 } ZEND_HASH_FOREACH_END ();
0 commit comments