summaryrefslogtreecommitdiff
path: root/xtr.cpp
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 /xtr.cpp
parent259ee22eba4e4e6471caa088479a93fbee894e11 (diff)
downloadcryptopp-git-9c5c4769a9c7a16aecc6cc7dd297bfe243dd022f.tar.gz
fix potential threading problem with initialization of static objects
Diffstat (limited to 'xtr.cpp')
-rw-r--r--xtr.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/xtr.cpp b/xtr.cpp
index c0777319..cdb3fc82 100644
--- a/xtr.cpp
+++ b/xtr.cpp
@@ -8,10 +8,9 @@
NAMESPACE_BEGIN(CryptoPP)
-GFP2Element & GFP2Element::Zero()
+const GFP2Element & GFP2Element::Zero()
{
- static GFP2Element zero;
- return zero;
+ return Singleton<GFP2Element>().Ref();
}
void XTR_FindPrimesAndGenerator(RandomNumberGenerator &rng, Integer &p, Integer &q, GFP2Element &g, unsigned int pbits, unsigned int qbits)