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

[quickjs] commented ref|unref

This commit is contained in:
Witold Filipczyk 2024-08-07 17:47:35 +02:00
parent c7b3713235
commit 157f90d1cc

View File

@ -147,11 +147,11 @@ js_nodeList_set_items(JSContext *ctx, JSValue this_val, void *node)
if (!nl) {
return;
}
dom_nodelist_ref(nl);
//dom_nodelist_ref(nl);
err = dom_nodelist_get_length(nl, &length);
if (err != DOM_NO_ERR) {
dom_nodelist_unref(nl);
//dom_nodelist_unref(nl);
return;
}
@ -174,7 +174,7 @@ fprintf(stderr, "Before: %s:%d\n", __FUNCTION__, __LINE__);
#endif
dom_node_unref(element);
}
dom_nodelist_unref(nl);
//dom_nodelist_unref(nl);
}
static JSValue