4
0
mirror of https://github.com/QuasarApp/qca.git synced 2025-05-14 03:29:32 +00:00

only parent the thread object if non-blocking

svn path=/trunk/kdesupport/qca/; revision=513331
This commit is contained in:
Justin Karneges 2006-02-25 02:00:56 +00:00
parent 4cd3bcb438
commit b240cd4b3d

@ -1670,7 +1670,7 @@ public:
{
evp.reset();
keymaker = new RSAKeyMaker(bits, exp, this);
keymaker = new RSAKeyMaker(bits, exp, !block ? this : 0);
wasBlocking = block;
if(block)
{
@ -1948,7 +1948,7 @@ public:
{
evp.reset();
keymaker = new DSAKeyMaker(domain, this);
keymaker = new DSAKeyMaker(domain, !block ? this : 0);
wasBlocking = block;
if(block)
{
@ -2174,7 +2174,7 @@ public:
{
evp.reset();
keymaker = new DHKeyMaker(domain, this);
keymaker = new DHKeyMaker(domain, !block ? this : 0);
wasBlocking = block;
if(block)
{