Re: BUG #14413: pgadmin3 crashes on start

From: John R Pierce <pierce(at)hogranch(dot)com>
To: bernhard(dot)rieder(at)eguana(dot)at, pgsql-bugs(at)postgresql(dot)org
Subject: Re: BUG #14413: pgadmin3 crashes on start
Date: 2016-11-05 05:33:17
Message-ID: 3efb1736-f764-25a0-4069-e901bcb903b8@hogranch.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

On 11/4/2016 4:56 PM, bernhard(dot)rieder(at)eguana(dot)at wrote:
> The following bug has been logged on the website:
>
> Bug reference: 14413
> Logged by: Bernhard Rieder
> Email address: bernhard(dot)rieder(at)eguana(dot)at
> PostgreSQL version: Unsupported/Unknown
> Operating system: linux
> Description:
>
> pgadmin crashes on plugin.cc:383 when obj->GetConnection() returns 0
>
> instead of:
> if (!obj || !(obj->GetConnection()->GetStatus() == PGCONN_OK))
>
> it should read:
> if (!obj || !obj->GetConnection() || !(obj->GetConnection()->GetStatus() ==
> PGCONN_OK))
>
>
>

this bug report is for the postgresql core system, pgadmin is not part
of that, I believe they have their own bug reporting mechanisms.

you probably should include a little more information, like what
specific 'linux' you're on, what distributiuon of pgadmin, what version
of it.

it appears pgadmin3 is deprecated and no longer supported, pgadmin4 is
all they are interested in. https://www.pgadmin.org/support/

--
john r pierce, recycling bits in santa cruz

In response to

Browse pgsql-bugs by date

  From Date Subject
Next Message marcos.castedo 2016-11-06 01:09:47 BUG #14414: SPI_ERROR_CONNECT on stable plpgsql function used for domain check
Previous Message bernhard.rieder 2016-11-04 23:56:41 BUG #14413: pgadmin3 crashes on start