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
commit99a601a856a2bd6c9974db589b0ef3f54e04aeca (patch)
treee48ba69628c5ba793533094e308c1fce9acb21aa /test/testutils/load.c
parent05a3cf37e14017a3593ed9e17e4a83b003ef29d6 (diff)
downloadlibdom-99a601a856a2bd6c9974db589b0ef3f54e04aeca.tar.gz
libdom-99a601a856a2bd6c9974db589b0ef3f54e04aeca.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;