vp-build/srcpkgs/pgadmin3/patches/pgadmin3-fix-segfault.patch

14 lines
456 B
Diff

https://bugs.archlinux.org/task/52683
--- pgadmin/frm/plugins.cpp
+++ pgadmin/frm/plugins.cpp
@@ -380,7 +380,7 @@ bool pluginUtilityFactory::CheckEnable(p
{
// If we need a specific server type, we can't enable unless
// we have a connection.
- if (!obj || !(obj->GetConnection()->GetStatus() == PGCONN_OK))
+ if (!obj || !obj->GetConnection() || !(obj->GetConnection()->GetStatus() == PGCONN_OK))
return false;
// Get the server type.