parser json BUGFIX correct metadata processing
diff --git a/src/parser_json.c b/src/parser_json.c
index 130e4e4..82df659 100644
--- a/src/parser_json.c
+++ b/src/parser_json.c
@@ -734,7 +734,6 @@
     char *dynamic_prefname = NULL;
     size_t name_len, prefix_len = 0;
     struct lys_module *mod;
-    struct lyd_meta *meta = NULL;
     const struct ly_ctx *ctx = lydctx->jsonctx->ctx;
     ly_bool is_attr = 0;
     struct lyd_node *prev = node;
@@ -856,13 +855,12 @@
 
         if (node->schema) {
             /* create metadata */
-            meta = NULL;
-            ret = lyd_parser_create_meta((struct lyd_ctx *)lydctx, node, &meta, mod, name, name_len, lydctx->jsonctx->value,
+            ret = lyd_parser_create_meta((struct lyd_ctx *)lydctx, node, NULL, mod, name, name_len, lydctx->jsonctx->value,
                     lydctx->jsonctx->value_len, &lydctx->jsonctx->dynamic, LY_VALUE_JSON, NULL, LYD_HINT_DATA, node->schema);
             LY_CHECK_GOTO(ret, cleanup);
 
             /* add/correct flags */
-            ret = lyd_parse_set_data_flags(node, &meta, (struct lyd_ctx *)lydctx, NULL);
+            ret = lyd_parse_set_data_flags(node, &node->meta, (struct lyd_ctx *)lydctx, NULL);
             LY_CHECK_GOTO(ret, cleanup);
         } else {
             /* create attribute */
@@ -885,7 +883,7 @@
 
     if (nodetype == LYS_LEAFLIST) {
         /* continue by processing another metadata object for the following
-         * leaf-list instance since they are allways instantiated in JSON array */
+         * leaf-list instance since they are always instantiated in JSON array */
         prev = node;
         node = node->next;
         goto next_entry;