Small memory leak in execute.c of ECPG driver

Поиск
Список
Период
Сортировка
От Michael Paquier
Тема Small memory leak in execute.c of ECPG driver
Дата
Msg-id CAB7nPqSqBaaYf5sg2wBdko=ZO-CR5HOa0fjB-1XAqedyQG8+uA@mail.gmail.com
обсуждение исходный текст
Ответы Re: Small memory leak in execute.c of ECPG driver
Список pgsql-hackers
Hi all,

In exactly 3 places of the ECPG driver (for numeric, for interval and
for date), we do something as follows:
/* Allocation of mallocedval */
if (!(mallocedval = ecpg_strdup("array [", lineno)))
        return false;

for (element = 0; element < var->arrsize; element++)
{
        int                     result;

        ptr = stuff_alloc();
        if (!ptr)
                return false; <= Leak here of mallocedval

It happens that if the allocation done within this for loop fails we
leak mallocedval that was previously allocated. Attached is a patch to
fix this issue spotted by Coverity.
Regards
--
Michael

Вложения

В списке pgsql-hackers по дате отправления:

Предыдущее
От: Ashutosh Bapat
Дата:
Сообщение: Re: ExplainModifyTarget doesn't work as expected
Следующее
От: Heikki Linnakangas
Дата:
Сообщение: Re: Missing markup in pg_receivexlog.sgml