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))