diff options
author | Robin Watts <robin.watts@artifex.com> | 2011-09-11 19:29:42 -0500 |
---|---|---|
committer | Robin Watts <robin.watts@artifex.com> | 2011-09-14 17:44:13 +0100 |
commit | 89ae81f651bfa112b8e07317eb6983beaf7cb212 (patch) | |
tree | 3f99dad1253b795629e66d45b915c1d72043242b /xps/xps_xml.c | |
parent | cefb81f1886685580a40b17b5e495a8a8a1ebeaf (diff) | |
download | mupdf-89ae81f651bfa112b8e07317eb6983beaf7cb212.tar.xz |
Initial import of exception handling code
Import exception handling code from WSS, modified to fit into the
fitz world.
With this code we have 'real' fz_try/fz_catch/fz_rethrow functions,
handling a fz_except type. We therefore rename the existing fz_throw/
fz_catch/fz_rethrow to be fz_error_make/fz_error_handle/fz_error_note.
We don't actually use fz_try/fz_catch/fz_rethrow yet...
Diffstat (limited to 'xps/xps_xml.c')
-rw-r--r-- | xps/xps_xml.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xps/xps_xml.c b/xps/xps_xml.c index 8448ecef..5a564fbc 100644 --- a/xps/xps_xml.c +++ b/xps/xps_xml.c @@ -376,7 +376,7 @@ xml_parse_document(unsigned char *s, int n) error = xml_parse_document_imp(&parser, p); if (error) { - fz_throw(error); + fz_error_make(error); return NULL; } |