From 82c4eb38804e011cfd855bc9e292f7533bfe4c2f Mon Sep 17 00:00:00 2001 From: weidai Date: Thu, 6 Apr 2006 21:20:25 +0000 Subject: merge in changes by denis bider and fix compile on gcc 3.4.4 and MSVC 6 git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@219 57ff6487-cd31-0410-9ec3-f628ee90f5f0 --- cryptlib.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cryptlib.cpp') diff --git a/cryptlib.cpp b/cryptlib.cpp index c85d891..fe0d764 100644 --- a/cryptlib.cpp +++ b/cryptlib.cpp @@ -179,11 +179,11 @@ unsigned int BufferedTransformation::GetMaxWaitObjectCount() const return t ? t->GetMaxWaitObjectCount() : 0; } -void BufferedTransformation::GetWaitObjects(WaitObjectContainer &container) +void BufferedTransformation::GetWaitObjects(WaitObjectContainer &container, CallStack const& callStack) { BufferedTransformation *t = AttachedTransformation(); if (t) - t->GetWaitObjects(container); + t->GetWaitObjects(container, callStack); // reduce clutter by not adding to stack here } void BufferedTransformation::Initialize(const NameValuePairs ¶meters, int propagation) -- cgit v1.2.1