From 8c6ba0e0587b4b28044385da90af408d72a0da01 Mon Sep 17 00:00:00 2001 From: Vincent Richard Date: Tue, 22 May 2007 19:25:59 +0000 Subject: Fixed bug #1721186: thread-safe reference counting. --- src/object.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/object.cpp') 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)) { } -- cgit v1.2.3