summaryrefslogtreecommitdiff
path: root/io/source/stm/omark.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'io/source/stm/omark.cxx')
-rw-r--r--io/source/stm/omark.cxx4
1 files changed, 0 insertions, 4 deletions
diff --git a/io/source/stm/omark.cxx b/io/source/stm/omark.cxx
index 8c1f6d37dbdb..156b70f95c5b 100644
--- a/io/source/stm/omark.cxx
+++ b/io/source/stm/omark.cxx
@@ -147,7 +147,6 @@ private:
OMarkableOutputStream::OMarkableOutputStream( )
{
- g_moduleCount.modCnt.acquire( &g_moduleCount.modCnt );
m_pBuffer = new MemRingBuffer;
m_nCurrentPos = 0;
m_nCurrentMark = 0;
@@ -156,7 +155,6 @@ OMarkableOutputStream::OMarkableOutputStream( )
OMarkableOutputStream::~OMarkableOutputStream()
{
delete m_pBuffer;
- g_moduleCount.modCnt.release( &g_moduleCount.modCnt );
}
@@ -573,7 +571,6 @@ private:
OMarkableInputStream::OMarkableInputStream()
{
- g_moduleCount.modCnt.acquire( &g_moduleCount.modCnt );
m_nCurrentPos = 0;
m_nCurrentMark = 0;
m_pBuffer = new MemRingBuffer;
@@ -585,7 +582,6 @@ OMarkableInputStream::~OMarkableInputStream()
if( m_pBuffer ) {
delete m_pBuffer;
}
- g_moduleCount.modCnt.release( &g_moduleCount.modCnt );
}