
Eric BlakeandMarkus Armbruster
8df59565d2
qapi-event: Drop qmp_output_get_qobject() null check
qmp_output_get_qobject() was changed never to return null some time
ago (in commit 6c2f9a15), but the qapi_event_send_FOO() functions
still check. Clean that up:
|@@ -28,7 +28,6 @@ void qapi_event_send_acpi_device_ost(ACP
| QMPEventFuncEmit emit;
| QmpOutputVisitor *qov;
| Visitor *v;
|- QObject *obj;
|
| emit = qmp_event_get_func_emit();
| if (!emit) {
|@@ -54,10 +53,7 @@ out_obj:
| goto out;
| }
|
|- obj = qmp_output_get_qobject(qov);
|- g_assert(obj);
|-
|- qdict_put_obj(qmp, "data", obj);
|+ qdict_put_obj(qmp, "data", qmp_output_get_qobject(qov));
| emit(QAPI_EVENT_ACPI_DEVICE_OST, qmp, &err);
|
| out:
Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <1458254921-17042-7-git-send-email-eblake@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
2016-03-18 10:29:25 +01:00
..
2016-02-22 18:40:22 +01:00
2015-12-22 16:01:08 +08:00
2016-03-04 17:16:32 +01:00
2016-03-01 13:34:38 +00:00
2015-11-04 13:40:13 +01:00
2016-02-15 20:02:09 +01:00
2016-03-16 12:48:11 +00:00
2015-12-17 17:33:49 +01:00
2015-12-18 12:18:31 +00:00
2016-03-07 13:26:29 +01:00
2016-02-16 14:29:27 +00:00
2016-02-09 17:07:55 +01:00
2015-10-12 18:44:54 +02:00
2016-03-18 10:29:25 +01:00
2016-03-18 10:29:25 +01:00
2016-02-16 14:29:27 +00:00
2016-03-18 10:29:25 +01:00
2016-03-18 10:29:25 +01:00
2016-03-18 10:29:25 +01:00
2015-10-29 17:59:27 +00:00
2015-11-02 14:50:27 +01:00
2016-02-08 17:29:54 +01:00
2016-03-16 12:48:11 +00:00
2016-02-05 19:09:50 +05:30