mirror of
https://github.com/qemu/qemu.git
synced 2025-08-08 08:05:17 +00:00
target/s390x: Fix broken user mode
Returning NULL from get_max_cpu_model results in a SIGSEGV runtime error. Signed-off-by: Stefan Weil <sw@weilnetz.de> Reviewed-by: David Hildenbrand <david@redhat.com> Message-Id: <20170130131517.8092-1-sw@weilnetz.de> Cc: qemu-stable@nongnu.org Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com> Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
This commit is contained in:
parent
55a19ad8b2
commit
a352aa62a7
@ -660,7 +660,6 @@ static void check_compatibility(const S390CPUModel *max_model,
|
|||||||
|
|
||||||
static S390CPUModel *get_max_cpu_model(Error **errp)
|
static S390CPUModel *get_max_cpu_model(Error **errp)
|
||||||
{
|
{
|
||||||
#ifndef CONFIG_USER_ONLY
|
|
||||||
static S390CPUModel max_model;
|
static S390CPUModel max_model;
|
||||||
static bool cached;
|
static bool cached;
|
||||||
|
|
||||||
@ -680,7 +679,6 @@ static S390CPUModel *get_max_cpu_model(Error **errp)
|
|||||||
cached = true;
|
cached = true;
|
||||||
return &max_model;
|
return &max_model;
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user