diff options
author | Lars Thorsen <[email protected]> | 2017-05-24 07:30:27 +0200 |
---|---|---|
committer | Lars Thorsen <[email protected]> | 2017-05-24 12:53:22 +0200 |
commit | f8ab425800ba3b01251616eb73d5faf22bc63387 (patch) | |
tree | 022ae2788164c3059345806326d06678bcb062d0 /lib/xmerl/src/xmerl_sax_simple_dom.erl | |
parent | f3851c6348596b0a9dda2997dac92d9ca9d7c2c1 (diff) | |
download | otp-f8ab425800ba3b01251616eb73d5faf22bc63387.tar.gz otp-f8ab425800ba3b01251616eb73d5faf22bc63387.tar.bz2 otp-f8ab425800ba3b01251616eb73d5faf22bc63387.zip |
[xmerl] Fix endDocument bug in output backends
* Fix problem of unexpected endDocument in the old_dom and
simple output backends
Diffstat (limited to 'lib/xmerl/src/xmerl_sax_simple_dom.erl')
-rw-r--r-- | lib/xmerl/src/xmerl_sax_simple_dom.erl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/xmerl/src/xmerl_sax_simple_dom.erl b/lib/xmerl/src/xmerl_sax_simple_dom.erl index 7eb3afd499..d842bd982b 100644 --- a/lib/xmerl/src/xmerl_sax_simple_dom.erl +++ b/lib/xmerl/src/xmerl_sax_simple_dom.erl @@ -129,8 +129,9 @@ build_dom(endDocument, State#xmerl_sax_simple_dom_state{dom=[Decl, {Tag, Attributes, lists:reverse(Content)}]}; _ -> - ?dbg("~p\n", [D]), - ?error("we're not at end the document when endDocument event is encountered.") + %% endDocument is also sent by the parser when a fault occur to tell + %% the event receiver that no more input will be sent + State end; %% Element |