mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-22 03:12:22 +00:00
util: xml: use g_auto directly for VIR_XPATH_NODE_AUTORESTORE
Since commit 44e7f029159ed701b4a1739ac711507ee53790ed util: rewrite auto cleanup macros to use glib's equivalent VIR_AUTOCLEAN is just an alias for g_auto. Use the GLib macros directly instead of our custom aliases. Signed-off-by: Ján Tomko <jtomko@redhat.com> Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
67e72053c1
commit
3372c16aa5
@ -233,7 +233,7 @@ typedef virXPathContextNodeSave *virXPathContextNodeSavePtr;
|
||||
void
|
||||
virXPathContextNodeRestore(virXPathContextNodeSavePtr save);
|
||||
|
||||
VIR_DEFINE_AUTOCLEAN_FUNC(virXPathContextNodeSave, virXPathContextNodeRestore);
|
||||
G_DEFINE_AUTO_CLEANUP_CLEAR_FUNC(virXPathContextNodeSave, virXPathContextNodeRestore);
|
||||
|
||||
/**
|
||||
* VIR_XPATH_NODE_AUTORESTORE:
|
||||
@ -243,8 +243,8 @@ VIR_DEFINE_AUTOCLEAN_FUNC(virXPathContextNodeSave, virXPathContextNodeRestore);
|
||||
* node pointer is reset to the original value when this macro was used.
|
||||
*/
|
||||
#define VIR_XPATH_NODE_AUTORESTORE(_ctxt) \
|
||||
VIR_AUTOCLEAN(virXPathContextNodeSave) _ctxt ## CtxtSave = { .ctxt = _ctxt,\
|
||||
.node = _ctxt->node}; \
|
||||
g_auto(virXPathContextNodeSave) _ctxt ## CtxtSave = { .ctxt = _ctxt,\
|
||||
.node = _ctxt->node}; \
|
||||
ignore_value(&_ctxt ## CtxtSave)
|
||||
|
||||
VIR_DEFINE_AUTOPTR_FUNC(xmlDoc, xmlFreeDoc);
|
||||
|
Loading…
x
Reference in New Issue
Block a user