only possible anomaly I can see here

This commit is contained in:
simonb 2007-08-04 18:15:58 +00:00
parent dcf5e68034
commit 288dfa6eb9

View file

@ -48,6 +48,9 @@ public:
/// assignment operator
XrmDatabaseHelper& operator=(const XrmDatabase& database) {
if (database == m_database) // assignment to self
return *this;
if (m_database!=0)
close();
m_database = database;