mirror of https://gitee.com/openkylin/libvirt.git
conf: remove NULL check from virDomainQemuMonitorEventNew
The qemu_domain_monitor_event_msg struct in qemu_protocol.x
defines event as a nonnull_string and qemuMonitorJSONIOProcessEvent
also errors out on a non-NULL event.
Drop the check to fix the build with static analysis.
This essentially reverts commit d343e8203d
Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
7611a1ef00
commit
5e067ba4e1
|
@ -1934,24 +1934,12 @@ virDomainQemuMonitorEventNew(int id,
|
|||
0, id, name, uuid, uuidstr)))
|
||||
return NULL;
|
||||
|
||||
/* event is mandatory, details are optional */
|
||||
if (!event) {
|
||||
virReportError(VIR_ERR_INVALID_ARG,
|
||||
_("unexpected event=NULL name=%s uuid=%s details=%s"),
|
||||
name, uuidstr, NULLSTR(details));
|
||||
goto error;
|
||||
}
|
||||
|
||||
ev->event = g_strdup(event);
|
||||
ev->seconds = seconds;
|
||||
ev->micros = micros;
|
||||
ev->details = g_strdup(details);
|
||||
|
||||
return (virObjectEventPtr)ev;
|
||||
|
||||
error:
|
||||
virObjectUnref(ev);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -321,4 +321,4 @@ virDomainQemuMonitorEventNew(int id,
|
|||
long long seconds,
|
||||
unsigned int micros,
|
||||
const char *details)
|
||||
ATTRIBUTE_NONNULL(2) ATTRIBUTE_NONNULL(3);
|
||||
ATTRIBUTE_NONNULL(2) ATTRIBUTE_NONNULL(3) ATTRIBUTE_NONNULL(4);
|
||||
|
|
Loading…
Reference in New Issue