mirror of
https://github.com/QuasarApp/qca.git
synced 2025-04-28 12:34:31 +00:00
use correct initialization value of true (false is wrong, and earlier we
were uninitialized which has a 99% chance of being true :)) svn path=/trunk/kdesupport/qca/; revision=734096
This commit is contained in:
parent
9a935345c3
commit
fdbdb4f1f2
@ -828,7 +828,7 @@ public:
|
||||
|
||||
virtual void update(const QByteArray &from_net, const QByteArray &from_app)
|
||||
{
|
||||
bool ok = false;
|
||||
bool ok = true;
|
||||
if(!from_app.isEmpty())
|
||||
ok = sasl_endecode(from_app, &result_to_net, true);
|
||||
if(ok && !from_net.isEmpty())
|
||||
|
Loading…
x
Reference in New Issue
Block a user