From 89ae81f651bfa112b8e07317eb6983beaf7cb212 Mon Sep 17 00:00:00 2001 From: Robin Watts Date: Sun, 11 Sep 2011 19:29:42 -0500 Subject: 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... --- xps/xps_xml.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xps/xps_xml.c') 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; } -- cgit v1.2.3