From f0af49097aafef2fcd391ee48ca02fb8ec99277c Mon Sep 17 00:00:00 2001 From: Cristy Date: Sat, 14 Aug 2021 19:17:01 -0400 Subject: [PATCH] stop parsing on exception --- coders/msl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/coders/msl.c b/coders/msl.c index 9fd2ddeedd..0691fa2191 100644 --- a/coders/msl.c +++ b/coders/msl.c @@ -7637,6 +7637,7 @@ static void MSLError(void *context,const char *format,...) #endif ThrowMSLException(DelegateFatalError,reason,"SAX error"); va_end(operands); + xmlStopParser(msl_info->parser); } static void MSLCDataBlock(void *context,const xmlChar *value,int length)