[libvirt] [PATCH v1 14/21] util: json: define cleanup function using VIR_DEFINE_AUTOPTR_FUNC

Sukrit Bhatnagar skrtbhtngr at gmail.com
Thu Jun 7 19:34:36 UTC 2018


Using the VIR_DEFINE_AUTOPTR_FUNC macro defined in src/util/viralloc.h,
define a new wrapper around an existing cleanup function which will be
called when a variable declared with VIR_AUTOPTR macro goes out of scope.
---
 src/util/virjson.h | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/util/virjson.h b/src/util/virjson.h
index e4a82bd..593dcb7 100644
--- a/src/util/virjson.h
+++ b/src/util/virjson.h
@@ -26,6 +26,7 @@
 
 # include "internal.h"
 # include "virbitmap.h"
+# include "viralloc.h"
 
 # include <stdarg.h>
 
@@ -45,6 +46,8 @@ typedef virJSONValue *virJSONValuePtr;
 void virJSONValueFree(virJSONValuePtr value);
 void virJSONValueHashFree(void *opaque, const void *name);
 
+VIR_DEFINE_AUTOPTR_FUNC(virJSONValuePtr, virJSONValueFree)
+
 virJSONType virJSONValueGetType(const virJSONValue *value);
 
 int virJSONValueObjectCreate(virJSONValuePtr *obj, ...)
-- 
1.8.3.1




More information about the libvir-list mailing list