diff options
-rw-r--r-- | qemu-char.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qemu-char.c b/qemu-char.c index c097ca16d1..5a8f9c09c6 100644 --- a/qemu-char.c +++ b/qemu-char.c @@ -2255,6 +2255,8 @@ static CharDriverState *qemu_chr_open_udp(QemuOpts *opts) fd = inet_dgram_opts(opts, &local_err); if (fd < 0) { + qerror_report_err(local_err); + error_free(local_err); return NULL; } return qemu_chr_open_udp_fd(fd); |