qemu-trivial
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-trivial] [PATCH] object_new_with_type: remove redundant code


From: Cao jin
Subject: [Qemu-trivial] [PATCH] object_new_with_type: remove redundant code
Date: Thu, 5 Nov 2015 13:16:54 +0800

g_assert & type_initialize are called in object_initialize_with_type

Signed-off-by: Cao jin <address@hidden>
---
 qom/object.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/qom/object.c b/qom/object.c
index fc6e161..43ac2dd 100644
--- a/qom/object.c
+++ b/qom/object.c
@@ -423,9 +423,6 @@ Object *object_new_with_type(Type type)
 {
     Object *obj;
 
-    g_assert(type != NULL);
-    type_initialize(type);
-
     obj = g_malloc(type->instance_size);
     object_initialize_with_type(obj, type->instance_size, type);
     obj->free = g_free;
-- 
2.1.0




reply via email to

[Prev in Thread] Current Thread [Next in Thread]