mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-04-04 21:37:37 +03:00
Fix password assignment.
This commit is contained in:
parent
c50fe534a3
commit
d80e8ed122
1 changed files with 1 additions and 1 deletions
|
@ -165,7 +165,7 @@ public class PwEntry {
|
|||
url = source.url;
|
||||
username = source.username;
|
||||
|
||||
int passLen = source.binaryData.length;
|
||||
int passLen = source.password.length;
|
||||
password = new byte[passLen];
|
||||
System.arraycopy(source.password, 0, password, 0, passLen);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue