Re: Assitance needed for the resolution of memory leak

Поиск
Список
Период
Сортировка
От Sasmit Utkarsh
Тема Re: Assitance needed for the resolution of memory leak
Дата
Msg-id CAM-5MT0RX8Szzo6JE7FEWWvrt6CzNszWBsJrmDOvmY5=0Wh-Og@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Assitance needed for the resolution of memory leak  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: Assitance needed for the resolution of memory leak
Список pgsql-general
Thanks Tom, It did work, and yeah I do have indentation in my editor, there was some formatting issue due to the copy and paste of the code.
:) 

Regards,
Sasmit Utkarsh
+91-7674022625


On Thu, Oct 12, 2023 at 2:07 AM Tom Lane <tgl@sss.pgh.pa.us> wrote:
Sasmit Utkarsh <utkarshsasmit@gmail.com> writes:
> Like for an ex: I have provided the test run for a file which has 4
> duplicate entries in the input file and below is the leak reported. I have
> followed
> consistently using PQclear to free all PGresult objects.

No you haven't: you've got two PQexec-something calls and
only one PQclear.  If control reaches here:

> res = PQexec(conn, Command);

that will overwrite your only pointer to the PQexecParams
result, and you won't clear it.

BTW, if this is what your code actually looks like in your editor,
it's no wonder you can't follow its basic control flow.  Indent
according to the brace structure, and your life will get easier.

                        regards, tom lane

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Assitance needed for the resolution of memory leak
Следующее
От: Ron
Дата:
Сообщение: Re: Assitance needed for the resolution of memory leak