1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2025-04-01 20:05:19 +00:00

hypervCreateEmbeddedParam: Don't count elements needlessly

'count' is not used after calculating it.

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Tim Wiederhake <twiederh@redhat.com>
This commit is contained in:
Peter Krempa 2021-07-23 10:38:08 +02:00
parent 23fbc0074e
commit 032af88d85

View File

@ -274,16 +274,11 @@ GHashTable *
hypervCreateEmbeddedParam(hypervWmiClassInfo *classInfo)
{
size_t i;
size_t count;
g_autoptr(GHashTable) table = virHashNew(NULL);
XmlSerializerInfo *typeinfo = NULL;
typeinfo = classInfo->serializerInfo;
/* loop through the items to find out how many fields there are */
for (count = 0; typeinfo[count].name != NULL; count++)
;
for (i = 0; typeinfo[i].name != NULL; i++) {
XmlSerializerInfo *item = &typeinfo[i];