From: Michael Meskes Date: Fri, 10 Mar 2017 09:32:41 +0000 (+0100) Subject: Fix a potential double-free in ecpg. X-Git-Tag: REL9_2_21~41 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=731afc91f0988604535db7838731cc1c355b160e;p=postgresql Fix a potential double-free in ecpg. --- diff --git a/src/interfaces/ecpg/preproc/pgc.l b/src/interfaces/ecpg/preproc/pgc.l index a0a2d4a003..33822c9c56 100644 --- a/src/interfaces/ecpg/preproc/pgc.l +++ b/src/interfaces/ecpg/preproc/pgc.l @@ -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;