Fix a potential double-free in ecpg.

This commit is contained in:
Michael Meskes 2017-03-10 10:32:41 +01:00
parent 52f6b2e5a6
commit 731afc91f0

View File

@ -541,6 +541,7 @@ cppline {space}*#([^i][A-Za-z]*|{if}|{ifdef}|{ifndef}|{import})(.*\\{space})*.
{
addlit(yytext, yyleng);
free(dolqstart);
dolqstart = NULL;
BEGIN(SQL);
base_yylval.str = mm_strdup(literalbuf);
return DOLCONST;