summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortallua <talluay@gmail.com>2021-04-06 00:33:28 +0900
committertallua <talluay@gmail.com>2021-04-06 00:33:28 +0900
commitd8dafb4170012b6dc1fe09d33c26d40a23f599fb (patch)
treef46875cf7262665fa84dd46a67fb01753fe42248
parent7f798dee2db6c32c7fae23d238e7a806b16b0f08 (diff)
downloadjson-glib-d8dafb4170012b6dc1fe09d33c26d40a23f599fb.tar.gz
uncomment code
-rw-r--r--json-glib/json-node.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/json-glib/json-node.c b/json-glib/json-node.c
index 0c8a675..f0bff28 100644
--- a/json-glib/json-node.c
+++ b/json-glib/json-node.c
@@ -149,7 +149,7 @@ json_node_unset (JsonNode *node)
case JSON_NODE_ARRAY:
if (node->data.array)
json_array_unref (node->data.array);
- //node->data.array = NULL;
+ node->data.array = NULL;
break;
case JSON_NODE_VALUE: