From 41b8c5b3a4c46d3c2beb1dae6e170c295c19b198 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Thu, 23 Jun 2016 13:28:41 -0700 Subject: Removed check for same mem allocator in S_can_contain. This is too strict, as it prevents the use of dynamically loaded extensions: see https://github.com/jgm/cmark/pull/123#discussion_r67231518. Documented in man page and public header that one should use the same memory allocator for every node in a tree. --- src/node.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/node.c') diff --git a/src/node.c b/src/node.c index 62acf14..e722acf 100644 --- a/src/node.c +++ b/src/node.c @@ -30,9 +30,6 @@ static bool S_can_contain(cmark_node *node, cmark_node *child) { if (node == NULL || child == NULL) { return false; } - if (NODE_MEM(node) != NODE_MEM(child)) { - return 0; - } // Verify that child is not an ancestor of node or equal to node. cur = node; -- cgit v1.2.3