mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-12-04 15:49:33 +01:00
Fix null pointer for KeyDerivationName
This commit is contained in:
@@ -332,7 +332,10 @@ public class PwDatabaseV4 extends PwDatabase<PwGroupV4, PwEntryV4> {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getKeyDerivationName() {
|
public String getKeyDerivationName() {
|
||||||
return kdfEngine.getName();
|
if (kdfEngine!=null)
|
||||||
|
return kdfEngine.getName();
|
||||||
|
else
|
||||||
|
return "";
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
Reference in New Issue
Block a user