Changeset 8220
- Timestamp:
- 03/10/10 09:12:14 (6 months ago)
- Location:
- branches/REL-1_10_0_PATCHES/pgadmin3
- Files:
-
- 2 modified
-
CHANGELOG (modified) (1 diff)
-
pgadmin/debugger/dlgDirectDbg.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/REL-1_10_0_PATCHES/pgadmin3/CHANGELOG
r8201 r8220 37 37 Date Dev Ver Change details 38 38 ---------- --- ------ -------------- 39 2010-03-10 DP 1.10.3 Avoid a crash when debugging NULL procedures [Ashesh 40 Vashi]. 39 41 2010-03-04 GL 1.10.2 Correctly save the position of a pgFrame, per a report 40 42 from Andreas Laggner and Dan Halbert. -
branches/REL-1_10_0_PATCHES/pgadmin3/pgadmin/debugger/dlgDirectDbg.cpp
r8187 r8220 742 742 743 743 // Don't bother telling the user that he aborted - he already knows! 744 if (st rcmp(state, "57014"))744 if (state != NULL && strcmp(state, "57014")) 745 745 wxLogError( wxT( "%s\n" ), wxString(PQerrorMessage(m_conn->getConnection()), wxConvUTF8).c_str()); 746 746 else
