[8319] Restore compile PGSQL support after last changes.

Signed-off-by: ApoC <apoc@nymfe.net>
This commit is contained in:
ApoC 2009-08-05 21:34:22 +02:00
parent 0f364bf00a
commit 82782779f7
2 changed files with 3 additions and 3 deletions

View file

@ -364,8 +364,8 @@ void DatabasePostgre::InitDelayThread()
assert(!m_delayThread);
//New delay thread for delay execute
m_threadBody = new PGSQLDelayThread(this);
m_delayThread = new ACE_Based::Thread(*m_threadBody);
m_threadBody = new PGSQLDelayThread(this); // Will be deleted on m_delayThread delete
m_delayThread = new ACE_Based::Thread(m_threadBody);
}
void DatabasePostgre::HaltDelayThread()

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "8318"
#define REVISION_NR "8319"
#endif // __REVISION_NR_H__