qemu-devel
[Top][All Lists]
Advanced

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

[PATCH 11/26] object: do not free class properties


From: Marc-André Lureau
Subject: [PATCH 11/26] object: do not free class properties
Date: Sun, 1 Dec 2019 15:15:16 +0400

The release callback is called during object_property_del_all(), on a
live instance. But class properties are common among all
instances. It is not currently called, because we don't release
classes, but it would not the right callback anyway.

Signed-off-by: Marc-André Lureau <address@hidden>
---
 qom/object.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/qom/object.c b/qom/object.c
index 63d489553c..55c690d62b 100644
--- a/qom/object.c
+++ b/qom/object.c
@@ -2110,7 +2110,7 @@ object_class_property_add_str(ObjectClass *klass, const 
char *name,
     rv = object_class_property_add(klass, name, "string",
                               get ? property_get_str : NULL,
                               set ? property_set_str : NULL,
-                              property_release_str,
+                              NULL,
                               prop, &local_err);
     if (local_err) {
         error_propagate(errp, local_err);
@@ -2203,7 +2203,7 @@ object_class_property_add_bool(ObjectClass *klass, const 
char *name,
     rv = object_class_property_add(klass, name, "bool",
                               get ? property_get_bool : NULL,
                               set ? property_set_bool : NULL,
-                              property_release_bool,
+                              NULL,
                               prop, &local_err);
     if (local_err) {
         error_propagate(errp, local_err);
@@ -2295,7 +2295,7 @@ object_class_property_add_enum(ObjectClass *klass, const 
char *name,
     rv = object_class_property_add(klass, name, typename,
                               get ? property_get_enum : NULL,
                               set ? property_set_enum : NULL,
-                              property_release_enum,
+                              NULL,
                               prop, &local_err);
     if (local_err) {
         error_propagate(errp, local_err);
@@ -2396,7 +2396,7 @@ object_class_property_add_tm(ObjectClass *klass, const 
char *name,
 
     rv = object_class_property_add(klass, name, "struct tm",
                               get ? property_get_tm : NULL, NULL,
-                              property_release_tm,
+                              NULL,
                               prop, &local_err);
     if (local_err) {
         error_propagate(errp, local_err);
-- 
2.24.0




reply via email to

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