1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-19 01:36:33 -04:00

[mujs] More nodelist_unref

This commit is contained in:
Witold Filipczyk 2024-08-07 18:37:19 +02:00
parent 32471eb951
commit bb172ed9fe
2 changed files with 3 additions and 0 deletions

View File

@ -303,6 +303,7 @@ fprintf(stderr, "Before: %s:%d\n", __FUNCTION__, __LINE__);
return;
}
mjs_push_nodelist(J, nodes);
dom_nodelist_unref(nodes);
}
static void

View File

@ -202,6 +202,7 @@ mjs_element_get_property_children(js_State *J)
return;
}
mjs_push_nodelist(J, nodes);
dom_nodelist_unref(nodes);
}
static void
@ -251,6 +252,7 @@ mjs_element_get_property_childNodes(js_State *J)
return;
}
mjs_push_nodelist(J, nodes);
dom_nodelist_unref(nodes);
}
static void