Commit 26796a89 authored by Davis King's avatar Davis King

Added a missing rethrow statement. The xml parser would

eat exceptions thrown by event handlers rather than letting
them propagate out as documented in the specification.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403095
parent f92ba0e2
......@@ -621,6 +621,8 @@ namespace dlib
// restore the old exception settings to in
in.exceptions(old_exceptions);
// don't forget to rethrow the exception
throw;
}
// restore the old exception settings to in
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment