summaryrefslogtreecommitdiff
path: root/test/testutils/load.c
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2011-12-21 22:18:10 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2011-12-21 22:18:10 +0000
commit83f3338663c4969eebefd8c2c43bd3fc43587fdd (patch)
treee48ba69628c5ba793533094e308c1fce9acb21aa /test/testutils/load.c
parent4ade8ad1c7b23e6eeeee6681acbdb43fb10cab43 (diff)
downloadlibdom-83f3338663c4969eebefd8c2c43bd3fc43587fdd.tar.gz
libdom-83f3338663c4969eebefd8c2c43bd3fc43587fdd.tar.bz2
Merge branches/jmb/dom-alloc-purge back to trunk
svn path=/trunk/libdom/; revision=13316
Diffstat (limited to 'test/testutils/load.c')
-rw-r--r--test/testutils/load.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/test/testutils/load.c b/test/testutils/load.c
index 57e07ef..254aa8d 100644
--- a/test/testutils/load.c
+++ b/test/testutils/load.c
@@ -42,8 +42,7 @@ dom_document *load_xml(const char *file, bool willBeModified)
UNUSED(willBeModified);
- parser = dom_xml_parser_create(NULL, NULL,
- myrealloc, NULL, mymsg, NULL);
+ parser = dom_xml_parser_create(NULL, NULL, mymsg, NULL);
if (parser == NULL) {
fprintf(stderr, "Can't create XMLParser\n");
return NULL;
@@ -104,8 +103,7 @@ dom_document *load_html(const char *file, bool willBeModified)
UNUSED(willBeModified);
- parser = dom_hubbub_parser_create(NULL, true,
- myrealloc, NULL, mymsg, NULL);
+ parser = dom_hubbub_parser_create(NULL, true, mymsg, NULL);
if (parser == NULL) {
fprintf(stderr, "Can't create Hubbub Parser\n");
return NULL;