From: Alexander Barabash
In the existing implementation, object_delete()
calls object_unref(), then frees the object's storage.
Running object_delete() on an object with reference count
different from 1 causes program failure.
In the existing implementation, object_unref()
finalizes the object w
From: Alexander Barabash
In the old implementation, if the new value of the property links
to the same object, as the old value, that object is first unref-ed,
and then ref-ed. This leads to unintended deinitialization of that object.
In the new implementation, this is fixed.
Signed-off-by: Ale
From: Alexander Barabash
In the old implementation, if the new value of the property links
to the same object, as the old value, that object is first unref-ed,
and then ref-ed. This leads to unintended deinitialization of that object.
In the new implementation, this is fixed.
Signed-off-by: Ale
From: Alexander Barabash
object_property_add_child() creates a property whose values as a string is
the child object's canonical path.
Signed-off-by: Alexander Barabash
---
include/qemu/object.h |4
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/include/qemu/object.h b