mirror of https://github.com/xemu-project/xemu.git
sparc: Use g_memdup() instead of g_new0() + memcpy()
There is no need to make sure that the memory is zeroed after the allocation if we also immediatly fill the whole buffer afterwards with memcpy(). Thus g_new0 should be g_new instead. But since we are also doing a memcpy() here, we can also simply replace both with g_memdup() instead. Signed-off-by: Thomas Huth <thuth@redhat.com> Acked-By: Artyom Tarasenko <atar4qemu@gmail.com> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
parent
bc82585a8f
commit
a337f295de
|
@ -117,8 +117,7 @@ static int cpu_sparc_register(SPARCCPU *cpu, const char *cpu_model)
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
env->def = g_new0(sparc_def_t, 1);
|
env->def = g_memdup(def, sizeof(*def));
|
||||||
memcpy(env->def, def, sizeof(*def));
|
|
||||||
|
|
||||||
featurestr = strtok(NULL, ",");
|
featurestr = strtok(NULL, ",");
|
||||||
sparc_cpu_parse_features(CPU(cpu), featurestr, &err);
|
sparc_cpu_parse_features(CPU(cpu), featurestr, &err);
|
||||||
|
|
Loading…
Reference in New Issue