BUG #15627: libpq memory leak

From: PG Bug reporting form <noreply(at)postgresql(dot)org>
To: pgsql-bugs(at)lists(dot)postgresql(dot)org
Cc: icegood1980(at)gmail(dot)com
Subject: BUG #15627: libpq memory leak
Date: 2019-02-10 16:30:29
Message-ID: 15627-292cee37a2b87e13@postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

The following bug has been logged on the website:

Bug reference: 15627
Logged by: ice ice
Email address: icegood1980(at)gmail(dot)com
PostgreSQL version: 11.1
Operating system: Ubuntu 18.04.1 LTS
Description:

PQisBusy has memory leak with next valgrind stack:

1: malloc in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so
2: PQmakeEmptyPGresult in
/opt/src/postgres/src/interfaces/libpq/fe-exec.c:146
3: getRowDescriptions in
/opt/src/postgres/src/interfaces/libpq/fe-protocol3.c:492
4: pqParseInput3 in
/opt/src/postgres/src/interfaces/libpq/fe-protocol3.c:293
5: parseInput in /opt/src/postgres/src/interfaces/libpq/fe-exec.c:1747
6: PQisBusy in /opt/src/postgres/src/interfaces/libpq/fe-exec.c:1764

The problem is that if PQisBusy doesn't revoke memory for item

/* Status for asynchronous result construction */
PGresult *result; /* result being constructed */

in struct pg_conn

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Tom Lane 2019-02-10 17:03:07 Re: BUG #15627: libpq memory leak
Previous Message Dean Rasheed 2019-02-10 11:18:46 Re: BUG #15623: Inconsistent use of default for updatable view