SIGSEGV in PQreset(..)

From: Arturs Zoldners <az(at)rpiva(dot)lv>
To: "pgsql-bugs(at)postgresql(dot)org" <pgsql-bugs(at)postgresql(dot)org>
Subject: SIGSEGV in PQreset(..)
Date: 2006-02-13 21:34:09
Message-ID: 1139866449.2642.31.camel@azazello.tuci.lv
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

OS: FC4, 2.6.11-1.1369_FC4
PostgreSQL: postgresql-8.1.2-1PGDG (rpm install)
gcc: version 4.0.2 20051125 (Red Hat 4.0.2-8)

The following code raises SIGSEGV:

main.cpp (gcc -lstdc++ -lpq -g main.cpp)

extern "C"
{
#include <libpq-fe.h>
}
int main(int arch, char* argv[])
{
PGconn* conn = PQconnectdb("x");
ConnStatusType status = PQstatus(conn);
//status == CONNECTION_BAD
PQreset(conn);
return 0;
}

gdb:
Program received signal SIGSEGV, Segmentation fault.
0x0061371e in connectDBStart (conn=0x9f82008) at fe-connect.c:798

However, this code works ok:

main.cpp (gcc -lstdc++ -lpq -g main.cpp)

extern "C"
{
#include <libpq-fe.h>
}
int main(int arch, char* argv[])
{
PGconn* conn = PQconnectdb("user='x' password='x' dbname='x'");
ConnStatusType status = PQstatus(conn);
//status == CONNECTION_BAD
PQreset(conn);
status = PQstatus(conn);
//status == CONNECTION_BAD
return 0;
}

In both cases postmaster is not running.
The "successful" completion of second sample suggests me that SIGSEGV in the first sample is triggered by a bug.
Or is there any other return code indicating badly formated argument passed to PQconnectdb function?
I'm sorry if this is just a wrong usage of libpq API from my side.

Regards,
az

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Tom Lane 2006-02-13 21:45:08 Re: BUG #2246: Bad malloc interactions: ecpg, openssl
Previous Message Andrew Klosterman 2006-02-13 21:16:58 Re: BUG #2246: Bad malloc interactions: ecpg, openssl