summaryrefslogtreecommitdiff
path: root/extra/yassl
diff options
context:
space:
mode:
authormonty@mysql.com/narttu.mysql.fi <>2006-11-30 21:56:03 +0200
committermonty@mysql.com/narttu.mysql.fi <>2006-11-30 21:56:03 +0200
commit601e6f4b2a78921304bc1d779991c615ee229f89 (patch)
tree0a9f9390874c91b9e4430fecfbbffa72967e7b69 /extra/yassl
parent3d4095603952aca95892d55fb1ef435132de1197 (diff)
downloadmariadb-git-601e6f4b2a78921304bc1d779991c615ee229f89.tar.gz
Fixed compiler warnings
Don't assert if my_thread_end() is called twice (common case)
Diffstat (limited to 'extra/yassl')
-rw-r--r--extra/yassl/taocrypt/include/algebra.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/yassl/taocrypt/include/algebra.hpp b/extra/yassl/taocrypt/include/algebra.hpp
index 07fc405f093..535ce2599c4 100644
--- a/extra/yassl/taocrypt/include/algebra.hpp
+++ b/extra/yassl/taocrypt/include/algebra.hpp
@@ -75,7 +75,7 @@ public:
typedef Integer Element;
AbstractRing() : AbstractGroup() {m_mg.m_pRing = this;}
- AbstractRing(const AbstractRing &source) {m_mg.m_pRing = this;}
+ AbstractRing(const AbstractRing &source) :AbstractGroup() {m_mg.m_pRing = this;}
AbstractRing& operator=(const AbstractRing &source) {return *this;}
virtual bool IsUnit(const Element &a) const =0;