From: Florian Forster Date: Tue, 5 Dec 2017 15:56:53 +0000 (+0100) Subject: liboconfig: Improve error handling. X-Git-Url: https://git.octo.it/?p=collectd.git;a=commitdiff_plain;h=c01b130763a1b02d119897d2770f8f323e34daaa liboconfig: Improve error handling. * Use the YYERROR macro instead of exit(3). * Remove newlines from strings passed to yyerror(). * Change return valud or yyerror() from int to void. --- diff --git a/src/liboconfig/parser.y b/src/liboconfig/parser.y index 04941073..09e261f5 100644 --- a/src/liboconfig/parser.y +++ b/src/liboconfig/parser.y @@ -31,7 +31,7 @@ #include "aux_types.h" static char *unquote (const char *orig); -static int yyerror (const char *s); +static void yyerror(const char *s); /* Lexer variables */ extern int yylineno; @@ -159,8 +159,8 @@ block: if (strcmp ($1.key, $3) != 0) { printf ("block_begin = %s; block_end = %s;\n", $1.key, $3); - yyerror ("Block not closed..\n"); - exit (1); + yyerror("block not closed"); + YYERROR; } free ($3); $3 = NULL; $$ = $1; @@ -172,8 +172,8 @@ block: if (strcmp ($1.key, $2) != 0) { printf ("block_begin = %s; block_end = %s;\n", $1.key, $2); - yyerror ("Block not closed..\n"); - exit (1); + yyerror("block not closed"); + YYERROR; } free ($2); $2 = NULL; $$ = $1; @@ -247,18 +247,19 @@ entire_file: ; %% -static int yyerror (const char *s) +static void yyerror(const char *s) { const char *text; - if (*yytext == '\n') + if (yytext == NULL) + text = ""; + else if (*yytext == '\n') text = ""; else text = yytext; - fprintf (stderr, "Parse error in file `%s', line %i near `%s': %s\n", + fprintf(stderr, "Parse error in file `%s', line %i near `%s': %s\n", c_file, yylineno, text, s); - return (-1); } /* int yyerror */ static char *unquote (const char *orig)