Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 629422
Collapse All | Expand All

(-)file_not_specified_in_diff (-2 / +2 lines)
Line  Link Here
0
-- a/pgadmin/frm/plugins.cpp
0
++ b/pgadmin/frm/plugins.cpp
Lines 380-386 bool pluginUtilityFactory::CheckEnable(p Link Here
380
	{
380
	{
381
		// If we need a specific server type, we can't enable unless
381
		// If we need a specific server type, we can't enable unless
382
		// we have a connection.
382
		// we have a connection.
383
		if (!obj || !(obj->GetConnection()->GetStatus() == PGCONN_OK))
383
		if (!obj || !obj->GetConnection() || !(obj->GetConnection()->GetStatus() == PGCONN_OK))
384
			return false;
384
			return false;
385
385
386
		// Get the server type.
386
		// Get the server type.

Return to bug 629422