diff options
author | Vincent Richard <[email protected]> | 2007-05-22 19:25:59 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2007-05-22 19:25:59 +0000 |
commit | 8c6ba0e0587b4b28044385da90af408d72a0da01 (patch) | |
tree | 9a5ff41766dc96c9808bccc1777b305ed4d78022 /src/object.cpp | |
parent | Fail if GNU TLS or GNU SASL dev packages are required but not installed. (diff) | |
download | vmime-8c6ba0e0587b4b28044385da90af408d72a0da01.tar.gz vmime-8c6ba0e0587b4b28044385da90af408d72a0da01.zip |
Fixed bug #1721186: thread-safe reference counting.
Diffstat (limited to 'src/object.cpp')
-rw-r--r-- | src/object.cpp | 4 |
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)) { } |