diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2005-07-03 23:58:53 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2005-07-03 23:58:53 +0000 |
commit | 45baf5846bb2134c857cf523ee7fa41cfd1c92b0 (patch) | |
tree | 1c498bd3d506a9307420305888d730c9d7f42bc0 | |
parent | 513653c9dce7d8a7036823a70e0b9cb3bbddc7b0 (diff) | |
download | fetchmail-45baf5846bb2134c857cf523ee7fa41cfd1c92b0.tar.gz fetchmail-45baf5846bb2134c857cf523ee7fa41cfd1c92b0.tar.bz2 fetchmail-45baf5846bb2134c857cf523ee7fa41cfd1c92b0.zip |
The memory leak/static buffer fix in r4018 was bogus
and did not properly detect the end of unescaped strings.
Reported by Jakob Hirsch.
svn path=/trunk/; revision=4088
-rw-r--r-- | rcfile_l.l | 19 |
1 files changed, 14 insertions, 5 deletions
@@ -31,7 +31,7 @@ int prc_lineno = 1; %% \"[^\"]*\" { - yytext[strlen(yytext)-1] = '\0'; + yytext[yyleng-1] = '\0'; escapes(yytext+1, yytext); yyleng = strlen(yytext); yylval.sval = yytext; @@ -39,7 +39,7 @@ int prc_lineno = 1; return STRING; } \'[^\']*\' { - yytext[strlen(yytext)-1] = '\0'; + yytext[yyleng-1] = '\0'; escapes(yytext+1, yytext); yyleng = strlen(yytext); yylval.sval = yytext; @@ -50,9 +50,18 @@ int prc_lineno = 1; "*" { BEGIN(0); return WILDCARD; } <NAME>[^=;:, \t\r\n]+ { - escapes(yytext, yytext); - yyleng = strlen(yytext); - yylval.sval = yytext; + static char *in; + static size_t ins; + + if (yyleng + 1 > ins) { + ins = yyleng + 1; + in = xrealloc(in, ins); + } + memcpy(in, yytext, yyleng); + in[yyleng] = '\0'; + escapes(in, in); + yyleng = strlen(in); + yylval.sval = in; SETSTATE(0); return STRING; } |