diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2013-01-25 14:12:38 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2013-02-01 15:53:11 -0600 |
commit | 5c099537a646370d85f9a0f6bc18371ceeeb14dc (patch) | |
tree | be230b98f690e3a3b4c8adb011a606669c2a3a7f /target-i386 | |
parent | b09995aef1d4a5879000a196a82e37b0511c8e03 (diff) |
cpu: do not use object_delete
CPUs are never added to the composition tree, so delete is achieved
simply by removing the last references to them.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'target-i386')
-rw-r--r-- | target-i386/helper.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target-i386/helper.c b/target-i386/helper.c index bdf83084ff..d1cb4e2445 100644 --- a/target-i386/helper.c +++ b/target-i386/helper.c @@ -1278,14 +1278,14 @@ X86CPU *cpu_x86_init(const char *cpu_model) env->cpu_model_str = cpu_model; if (cpu_x86_register(cpu, cpu_model) < 0) { - object_delete(OBJECT(cpu)); + object_unref(OBJECT(cpu)); return NULL; } x86_cpu_realize(OBJECT(cpu), &error); if (error) { error_free(error); - object_delete(OBJECT(cpu)); + object_unref(OBJECT(cpu)); return NULL; } return cpu; |