mirror of https://gitee.com/openkylin/libvirt.git
qemuMonitorJSONGetStringListProperty: Don't return element count
The only caller doesn't care about the number of elements in the string list so we don't have to calculate it. Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
parent
99908b930d
commit
7d50abb805
|
@ -6524,7 +6524,7 @@ qemuMonitorJSONGetStringListProperty(qemuMonitor *mon,
|
||||||
if (!(*strList = virJSONValueObjectGetStringArray(reply, "return")))
|
if (!(*strList = virJSONValueObjectGetStringArray(reply, "return")))
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
return g_strv_length(*strList);
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue