| Submitter | Luiz Capitulino |
|---|---|
| Date | Feb. 11, 2010, 1:50 a.m. |
| Message ID | <1265853007-27300-22-git-send-email-lcapitulino@redhat.com> |
| Download | mbox | patch |
| Permalink | /patch/45103/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/monitor.c b/monitor.c index d9592e9..6a64e6e 100644 --- a/monitor.c +++ b/monitor.c @@ -4760,7 +4760,8 @@ void qemu_error_internal(const char *file, int linenr, const char *func, if (!qemu_error_sink->mon->error) { qemu_error_sink->mon->error = qerror; } else { - /* XXX: warn the programmer */ + MON_DEBUG("Additional error report at %s:%d\n", qerror->file, + qerror->linenr); QDECREF(qerror); } break;
Handlers can generate only one error in a call, we let the programmer know if they brake this rule and clients will only get the first generated error. Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com> --- monitor.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)