Обсуждение: potential memory leak in pg_regcomp()

Поиск
Список
Период
Сортировка

potential memory leak in pg_regcomp()

От
Zhihong Yu
Дата:
Hi,
I was looking at pg_regcomp():

    re->re_guts = VS(MALLOC(sizeof(struct guts)));

I did some search trying to find where re_guts is freed but haven't found it.
Can someone enlighten me?

Thanks

Re: potential memory leak in pg_regcomp()

От
Michael Paquier
Дата:
On Fri, Jul 22, 2022 at 08:20:04PM -0700, Zhihong Yu wrote:
> Hi,
> I was looking at pg_regcomp():
>
>     re->re_guts = VS(MALLOC(sizeof(struct guts)));
>
> I did some search trying to find where re_guts is freed but haven't
> found it.
> Can someone enlighten me?

Oops.  It seems that you are right and that there is room for
improvement here.  regguts.h defines MALLOC() as a simple malloc()..
--
Michael

Вложения

Re: potential memory leak in pg_regcomp()

От
Tom Lane
Дата:
Zhihong Yu <zyu@yugabyte.com> writes:
> I was looking at pg_regcomp():
>     re->re_guts = VS(MALLOC(sizeof(struct guts)));
> I did some search trying to find where re_guts is freed but haven't
> found it.

In rfree(), which is called from freev().

            regards, tom lane