From c24661b5c67e1a2c34d0fac87965f8a81a4eec66 Mon Sep 17 00:00:00 2001 From: Christoph Mallon Date: Tue, 16 Sep 2008 10:48:48 +0000 Subject: [PATCH] abort() instead of exit(1) in case of anchor token leaks. [r22001] --- parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parser.c b/parser.c index 019528e..2e18543 100644 --- a/parser.c +++ b/parser.c @@ -9819,7 +9819,7 @@ static void parse_translation_unit(void) } } if (anchor_leak) - exit(1); + abort(); #endif switch (token.type) { -- 2.20.1