Browse Source

Also prevent logging of passphrase length in first time wizard

pull/148/head
Duke 3 months ago
parent
commit
0c10cf1243
  1. 2
      src/firsttimewizard.cpp

2
src/firsttimewizard.cpp

@ -183,7 +183,7 @@ NewOrRestorePage::NewOrRestorePage(FirstTimeWizard *parent) : QWizardPage(parent
parent->button(QWizard::NextButton)->setEnabled(false);
int length = passphrase.length();
qDebug() << __func__ << ": passphrase length=" << length;
//qDebug() << __func__ << ": passphrase length=" << length;
char *sequence = NULL;
sequence = new char[length+1];

Loading…
Cancel
Save