From: Christoph Mallon Date: Tue, 16 Sep 2008 10:48:48 +0000 (+0000) Subject: abort() instead of exit(1) in case of anchor token leaks. X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=c24661b5c67e1a2c34d0fac87965f8a81a4eec66;p=cparser abort() instead of exit(1) in case of anchor token leaks. [r22001] --- 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) {