From: Paolo Bonzini Date: Mon, 25 Sep 2023 10:06:02 +0000 (+0200) Subject: target/i386/cpu: avoid shadowed local variables X-Git-Tag: v8.2.0-rc0~108^2~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=637123a21381b2c5833d9d663af06e3105d8caa9;p=thirdparty%2Fqemu.git target/i386/cpu: avoid shadowed local variables Reuse the pointer variable used for the unversioned model. Signed-off-by: Paolo Bonzini --- diff --git a/target/i386/cpu.c b/target/i386/cpu.c index 7836aa6692f..ed72883bf33 100644 --- a/target/i386/cpu.c +++ b/target/i386/cpu.c @@ -5976,9 +5976,10 @@ static void x86_register_cpudef_types(const X86CPUDefinition *def) /* Versioned models: */ for (vdef = x86_cpu_def_get_versions(def); vdef->version; vdef++) { - X86CPUModel *m = g_new0(X86CPUModel, 1); g_autofree char *name = x86_cpu_versioned_model_name(def, vdef->version); + + m = g_new0(X86CPUModel, 1); m->cpudef = def; m->version = vdef->version; m->note = vdef->note;