From 0457bcbf2e97a822cd6635e1e50c89172ad19a2c Mon Sep 17 00:00:00 2001 From: Cyrill Gorcunov Date: Thu, 7 Oct 2010 19:30:54 +0400 Subject: [PATCH] preproc: Issue warning on unterminated %{ construct As being pointed by "matching braces" topic on [ http://forum.nasm.us/index.php?topic=905.0 ] we don't issue warning on missed match for "{" brace opened. Strictly speaking we should issue error instead and force user to fix asm source code but since it's here for a long time already -- lets be "admissive". Reported-by: Klod CC: Frank Kotler Signed-off-by: Cyrill Gorcunov --- preproc.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/preproc.c b/preproc.c index 19de89e9..af466637 100644 --- a/preproc.c +++ b/preproc.c @@ -907,10 +907,14 @@ static Token *tokenize(char *line) type = TOK_PREPROC_ID; } else if (*p == '{') { p++; - while (*p && *p != '}') { + while (*p) { + if (*p == '}') + break; p[-1] = *p; p++; } + if (*p != '}') + error(ERR_WARNING | ERR_PASS1, "unterminated %{ construct"); p[-1] = '\0'; if (*p) p++;