Re: Help needed for the resolution of memory leak

Поиск
Список
Период
Сортировка
От Merlin Moncure
Тема Re: Help needed for the resolution of memory leak
Дата
Msg-id CAHyXU0xc=ctOrr=2Z8p7zTjxtNZmb+=O1M8D9j4W17FtNZc5eQ@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Help needed for the resolution of memory leak  (Sasmit Utkarsh <utkarshsasmit@gmail.com>)
Ответы Re: Help needed for the resolution of memory leak
Список pgsql-general
On Wed, Jan 17, 2024 at 1:14 PM Sasmit Utkarsh <utkarshsasmit@gmail.com> wrote:
Hi Merlin et al.

Below are some couple of observations attached as an "overview_of_code" and other attachments "function_def_other_details" and leak sanitizer report. Please assist with some clarifications given in overview_of_code with (***). Let me know if you need any more information

***How do we handle for the case clearing when PGresult object is assigned a pointer to the data of the specified field within the existing PGresult object?
i.e when SQL_get_tpf_rw() actually completes in each iteration? 


It is your responsibility to close PGResult and PGConn objects.  Each one created must be cleaned up.  This is basic libpq usage.  I suggest studying the documentation.  


Start here: https://www.postgresql.org/docs/current/libpq-exec.html 
Also Study here: https://www.postgresql.org/docs/current/libpq-example.html

You should not reuse a pointer unless you have cleared the object first.

****Is the leak reported due to improper handling of the above case ? or is it due to some other flow
Your leaks look mostly due to not cleaning PGResult.  However, the real issue here is you need to learn basic libpq usage a little better...try writing a smaller program and see when it starts to complain about leaks.

merlin

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

Предыдущее
От: Michael Nolan
Дата:
Сообщение: Re: undefined symbol when installing pgcrypto on 16.1
Следующее
От: Merlin Moncure
Дата:
Сообщение: Re: Moving to Postgresql database