Merge branch 'PHP-8.2'

This commit is contained in:
David Carlier 2023-02-27 19:49:01 +00:00
commit 3db32439f9
2 changed files with 5 additions and 1 deletions

View file

@ -143,7 +143,11 @@ PHPDBG_API int phpdbg_vprint(int type, int fd, const char *strfmt, va_list args)
return msglen;
}
if (UNEXPECTED(msglen == 0)) {
len = 0;
} else {
len = phpdbg_process_print(fd, type, msg, msglen);
}
if (msg) {
free(msg);

Binary file not shown.