aboutsummaryrefslogtreecommitdiffstats
path: root/src/object.cpp
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2007-05-22 19:25:59 +0000
committerVincent Richard <[email protected]>2007-05-22 19:25:59 +0000
commit8c6ba0e0587b4b28044385da90af408d72a0da01 (patch)
tree9a5ff41766dc96c9808bccc1777b305ed4d78022 /src/object.cpp
parentFail if GNU TLS or GNU SASL dev packages are required but not installed. (diff)
downloadvmime-8c6ba0e0587b4b28044385da90af408d72a0da01.tar.gz
vmime-8c6ba0e0587b4b28044385da90af408d72a0da01.zip
Fixed bug #1721186: thread-safe reference counting.
Diffstat (limited to 'src/object.cpp')
-rw-r--r--src/object.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/object.cpp b/src/object.cpp
index 651aa1e1..c03653e9 100644
--- a/src/object.cpp
+++ b/src/object.cpp
@@ -33,13 +33,13 @@ namespace vmime
object::object()
- : m_refMgr(new utility::refManager(this))
+ : m_refMgr(utility::refManager::create(this))
{
}
object::object(const object&)
- : m_refMgr(new utility::refManager(this))
+ : m_refMgr(utility::refManager::create(this))
{
}