summaryrefslogtreecommitdiff
path: root/json-glib/json-reader.c
diff options
context:
space:
mode:
authorPhilip Withnall <philip.withnall@collabora.co.uk>2015-11-07 17:38:22 +0100
committerEmmanuele Bassi <ebassi@gnome.org>2016-03-01 14:53:02 +0000
commit1de237a502ceee96df7091c2df4492b8bc08b2c5 (patch)
treec9f51fdc9c370b57abe75e97200b3747a5f326bb /json-glib/json-reader.c
parent58f479b60eb2db4c73605d469d68a8ffd8679327 (diff)
downloadjson-glib-1de237a502ceee96df7091c2df4492b8bc08b2c5.tar.gz
node: Add json_node_ref() and json_node_unref()
Add reference counting semantics to JsonNode, in addition to the existing init/unset and alloc/free semantics. json_node_free() must only be used with nodes allocated using json_node_alloc(). json_node_unref() may be used with all nodes (if correctly paired; it may be paired with json_node_alloc()). It is not valid to call json_node_free() on a node whose reference count is not 1. https://bugzilla.gnome.org/show_bug.cgi?id=756121
Diffstat (limited to 'json-glib/json-reader.c')
-rw-r--r--json-glib/json-reader.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/json-glib/json-reader.c b/json-glib/json-reader.c
index 8c552e5..afc2414 100644
--- a/json-glib/json-reader.c
+++ b/json-glib/json-reader.c
@@ -113,7 +113,7 @@ json_reader_finalize (GObject *gobject)
JsonReaderPrivate *priv = JSON_READER (gobject)->priv;
if (priv->root != NULL)
- json_node_free (priv->root);
+ json_node_unref (priv->root);
if (priv->error != NULL)
g_clear_error (&priv->error);
@@ -258,7 +258,7 @@ json_reader_set_root (JsonReader *reader,
if (priv->root != NULL)
{
- json_node_free (priv->root);
+ json_node_unref (priv->root);
priv->root = NULL;
priv->current_node = NULL;
priv->previous_node = NULL;