aboutsummaryrefslogtreecommitdiff
path: root/lib/xml_parser.ml
diff options
context:
space:
mode:
authorletouzey2013-03-13 00:00:17 +0000
committerletouzey2013-03-13 00:00:17 +0000
commit9aecb4427f0f8ca3cb4c26bc7f73bb74164a93d9 (patch)
tree36a4ab30f4a75e73c9f4921cca1d25d1cb7cd545 /lib/xml_parser.ml
parent552df1605233769ad3cdabaadaa0011605e79797 (diff)
Restrict (try...with...) to avoid catching critical exn (part 8)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16284 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'lib/xml_parser.ml')
-rw-r--r--lib/xml_parser.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/xml_parser.ml b/lib/xml_parser.ml
index 108e226783..630992eb5f 100644
--- a/lib/xml_parser.ml
+++ b/lib/xml_parser.ml
@@ -177,9 +177,9 @@ let do_parse xparser =
if xparser.check_eof && pop xparser <> Xml_lexer.Eof then raise (Internal_error EOFExpected);
Xml_lexer.close ();
x
- with e ->
+ with any ->
Xml_lexer.close ();
- raise (!xml_error (error_of_exn xparser e) xparser.source)
+ raise (!xml_error (error_of_exn xparser any) xparser.source)
let parse p = do_parse p