abort() instead of exit(1) in case of anchor token leaks.
authorChristoph Mallon <christoph.mallon@gmx.de>
Tue, 16 Sep 2008 10:48:48 +0000 (10:48 +0000)
committerChristoph Mallon <christoph.mallon@gmx.de>
Tue, 16 Sep 2008 10:48:48 +0000 (10:48 +0000)
[r22001]

parser.c

index 019528e..2e18543 100644 (file)
--- 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) {