]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
smbios: clear smbios_type4_count before building tables
authorIgor Mammedov <imammedo@redhat.com>
Thu, 14 Mar 2024 15:22:55 +0000 (16:22 +0100)
committerMichael S. Tsirkin <mst@redhat.com>
Mon, 18 Mar 2024 12:42:46 +0000 (08:42 -0400)
it will help to keep type 4 tables accounting correct in case
SMBIOS tables are built multiple times.

Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Tested-by: Fiona Ebner <f.ebner@proxmox.com>
Message-Id: <20240314152302.2324164-15-imammedo@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
hw/smbios/smbios.c

index 0ab77b5ec8dfc57411f70ca89fb191c56082b4b0..48713aa50560aaf293d07040fefaf4b12072a3e7 100644 (file)
@@ -1096,6 +1096,7 @@ void smbios_get_tables(MachineState *ms,
            ep_type == SMBIOS_ENTRY_POINT_TYPE_64);
 
     g_free(smbios_tables);
+    smbios_type4_count = 0;
     smbios_tables = g_memdup2(usr_blobs, usr_blobs_len);
     smbios_tables_len = usr_blobs_len;
     smbios_table_max = usr_table_max;