mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -07:00
qga: fix false negative argument passing
Function send_response(s, &qdict->base) returns a negative number when any failures occured. But strerror()'s parameter cannot be negative. Let's change the testing condition and pass '-ret' to strerr(). Signed-off-by: Gonglei <arei.gonglei@huawei.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
+2
-2
@@ -603,8 +603,8 @@ static void process_event(JSONMessageParser *parser, QList *tokens)
|
||||
error_free(err);
|
||||
}
|
||||
ret = send_response(s, QOBJECT(qdict));
|
||||
if (ret) {
|
||||
g_warning("error sending error response: %s", strerror(ret));
|
||||
if (ret < 0) {
|
||||
g_warning("error sending error response: %s", strerror(-ret));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user