summaryrefslogtreecommitdiff
path: root/bindings
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2013-02-19 23:27:10 +0000
committerVincent Sanders <vince@kyllikki.org>2013-02-19 23:27:10 +0000
commitddb2d27f4206905f2ed2ac7d61b74ce88d68401c (patch)
treec482500d137ff527279e15f1167ac3d2022fb013 /bindings
parenteb41fa70373b4f54fca3eab5a00521be4e48e5fe (diff)
downloadlibdom-ddb2d27f4206905f2ed2ac7d61b74ce88d68401c.tar.gz
libdom-ddb2d27f4206905f2ed2ac7d61b74ce88d68401c.tar.bz2
add context for default action function
Diffstat (limited to 'bindings')
-rw-r--r--bindings/hubbub/parser.c1
-rw-r--r--bindings/xml/expat_xmlparser.c1
-rw-r--r--bindings/xml/libxml_xmlparser.c1
3 files changed, 3 insertions, 0 deletions
diff --git a/bindings/hubbub/parser.c b/bindings/hubbub/parser.c
index 0c80a65..b597f9a 100644
--- a/bindings/hubbub/parser.c
+++ b/bindings/hubbub/parser.c
@@ -794,6 +794,7 @@ dom_hubbub_parser_create(dom_hubbub_parser_params *params,
NULL,
NULL,
params->daf,
+ params->ctx,
&binding->doc);
if (err != DOM_NO_ERR) {
hubbub_parser_destroy(binding->parser);
diff --git a/bindings/xml/expat_xmlparser.c b/bindings/xml/expat_xmlparser.c
index cc08171..f2ffc76 100644
--- a/bindings/xml/expat_xmlparser.c
+++ b/bindings/xml/expat_xmlparser.c
@@ -478,6 +478,7 @@ dom_xml_parser_create(const char *enc, const char *int_enc,
/* qname */ NULL,
/* doctype */ NULL,
NULL,
+ NULL,
document);
if (err != DOM_NO_ERR) {
diff --git a/bindings/xml/libxml_xmlparser.c b/bindings/xml/libxml_xmlparser.c
index dde598c..87b137d 100644
--- a/bindings/xml/libxml_xmlparser.c
+++ b/bindings/xml/libxml_xmlparser.c
@@ -214,6 +214,7 @@ dom_xml_parser *dom_xml_parser_create(const char *enc, const char *int_enc,
/* qname */ NULL,
/* doctype */ NULL,
NULL,
+ NULL,
document);
if (err != DOM_NO_ERR) {