mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Fix oplog...
This commit is contained in:
parent
ff414555db
commit
16cde23eb2
3 changed files with 5 additions and 4 deletions
|
@ -1752,6 +1752,7 @@ phpdbg_main:
|
||||||
phpdbg_error("oplog", "path=\"%s\"", "Failed to open oplog %s", oplog_file);
|
phpdbg_error("oplog", "path=\"%s\"", "Failed to open oplog %s", oplog_file);
|
||||||
}
|
}
|
||||||
free(oplog_file);
|
free(oplog_file);
|
||||||
|
oplog_file = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* set default colors */
|
/* set default colors */
|
||||||
|
|
|
@ -190,7 +190,7 @@ void phpdbg_print_opline_ex(zend_execute_data *execute_data, zend_bool ignore_fl
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!ignore_flags && PHPDBG_G(oplog)) {
|
if (!ignore_flags && PHPDBG_G(oplog)) {
|
||||||
phpdbg_log_ex(fileno(PHPDBG_G(oplog)), "L%-5u %16p %s %s",
|
phpdbg_log_ex(fileno(PHPDBG_G(oplog)), "L%-5u %16p %s %s\n",
|
||||||
opline->lineno,
|
opline->lineno,
|
||||||
opline,
|
opline,
|
||||||
decode,
|
decode,
|
||||||
|
|
|
@ -63,9 +63,9 @@ PHPDBG_API int phpdbg_rlog_internal(int fd, const char *fmt, ...) PHP_ATTRIBUTE_
|
||||||
#define phpdbg_writeln_ex(out, tag, xmlfmt, strfmt, ...) phpdbg_print(P_WRITELN, out, tag, xmlfmt, strfmt, ##__VA_ARGS__)
|
#define phpdbg_writeln_ex(out, tag, xmlfmt, strfmt, ...) phpdbg_print(P_WRITELN, out, tag, xmlfmt, strfmt, ##__VA_ARGS__)
|
||||||
#define phpdbg_write_ex(out, tag, xmlfmt, strfmt, ...) phpdbg_print(P_WRITE , out, tag, xmlfmt, strfmt, ##__VA_ARGS__)
|
#define phpdbg_write_ex(out, tag, xmlfmt, strfmt, ...) phpdbg_print(P_WRITE , out, tag, xmlfmt, strfmt, ##__VA_ARGS__)
|
||||||
#define phpdbg_script_ex(out, type, fmt, ...) phpdbg_print(type , out, NULL, NULL, fmt, ##__VA_ARGS__)
|
#define phpdbg_script_ex(out, type, fmt, ...) phpdbg_print(type , out, NULL, NULL, fmt, ##__VA_ARGS__)
|
||||||
#define phpdbg_log_ex(out, fmt, ...) phpdbg_log_internal(PHPDBG_G(io)[PHPDBG_STDOUT].fd, fmt, ##__VA_ARGS__)
|
#define phpdbg_log_ex(out, fmt, ...) phpdbg_log_internal(out, fmt, ##__VA_ARGS__)
|
||||||
#define phpdbg_xml_ex(out, fmt, ...) phpdbg_xml_internal(PHPDBG_G(io)[PHPDBG_STDOUT].fd, fmt, ##__VA_ARGS__)
|
#define phpdbg_xml_ex(out, fmt, ...) phpdbg_xml_internal(out, fmt, ##__VA_ARGS__)
|
||||||
#define phpdbg_out_ex(out, fmt, ...) phpdbg_out_internal(PHPDBG_G(io)[PHPDBG_STDOUT].fd, fmt, ##__VA_ARGS__)
|
#define phpdbg_out_ex(out, fmt, ...) phpdbg_out_internal(out, fmt, ##__VA_ARGS__)
|
||||||
|
|
||||||
#define phpdbg_rlog(fd, fmt, ...) phpdbg_rlog_internal(fd, fmt, ##__VA_ARGS__)
|
#define phpdbg_rlog(fd, fmt, ...) phpdbg_rlog_internal(fd, fmt, ##__VA_ARGS__)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue