summaryrefslogtreecommitdiff
path: root/dh.h
diff options
context:
space:
mode:
authorweidai <weidai11@users.noreply.github.com>2003-07-29 01:18:33 +0000
committerweidai <weidai11@users.noreply.github.com>2003-07-29 01:18:33 +0000
commit9c5c4769a9c7a16aecc6cc7dd297bfe243dd022f (patch)
tree7a78ed3becd2c14f449d1cc66a58edd414256d94 /dh.h
parent259ee22eba4e4e6471caa088479a93fbee894e11 (diff)
downloadcryptopp-git-9c5c4769a9c7a16aecc6cc7dd297bfe243dd022f.tar.gz
fix potential threading problem with initialization of static objects
Diffstat (limited to 'dh.h')
-rw-r--r--dh.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/dh.h b/dh.h
index 31fa7985..641d508b 100644
--- a/dh.h
+++ b/dh.h
@@ -78,7 +78,7 @@ public:
private:
const DL_KeyAgreementAlgorithm<Element> & GetKeyAgreementAlgorithm() const
- {static KeyAgreementAlgorithm a; return a;}
+ {return Singleton<KeyAgreementAlgorithm>().Ref();}
DL_GroupParameters<Element> & AccessAbstractGroupParameters()
{return m_groupParameters;}