Hi Dave,

As you found the segment fault on OSX  related to debugger.
In dlgDirectDbg::OnTargetComplete(), It waits for the function
this->Show(true) for completion, and "this" pointer will not be available on
cancellation,  and hence It is crashing on next line.
ie. this->SetFocus();

On removing this line, the problem is getting solved.

--
Thanks & Regards,

Ashesh Vashi
EnterpriseDB INDIA: Enterprise Postgres Company<http://www.enterprisedb.com>
Index: debugger/dlgDirectDbg.cpp
===================================================================
--- debugger/dlgDirectDbg.cpp	(revision 8307)
+++ debugger/dlgDirectDbg.cpp	(working copy)
@@ -775,7 +775,6 @@
         return;
 
     this->Show( true );
-    this->SetFocus();
 }
 
 ////////////////////////////////////////////////////////////////////////////////
-- 
Sent via pgadmin-hackers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers

Reply via email to