1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00

bug 1067: the node was freed, but still used.

This commit is contained in:
Witold Filipczyk 2009-02-12 09:48:04 +01:00 committed by Witold Filipczyk
parent c53e6335a1
commit a7c2f14e6d
2 changed files with 2 additions and 3 deletions

1
NEWS
View File

@ -34,6 +34,7 @@ Other changes:
* minor bug 761: When reading bookmarks from an XBEL file, distinguish
attribute names from attribute values.
* enhancement: Updated ISO 8859-7, ISO 8859-16, KOI8-R, and MacRoman.
* critical: bug 1067: crash in call_dom_stack_callbacks with RSS
ELinks 0.12pre2:
----------------

View File

@ -947,9 +947,7 @@ dom_rss_pop_document(struct dom_stack *stack, struct dom_node *root, void *data)
done_dom_string(&renderer->text);
mem_free_if(renderer->items);
done_dom_node(root);
return DOM_CODE_OK;
return DOM_CODE_FREE_NODE;
}