mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-04-05 05:47:36 +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;
|
url = source.url;
|
||||||
username = source.username;
|
username = source.username;
|
||||||
|
|
||||||
int passLen = source.binaryData.length;
|
int passLen = source.password.length;
|
||||||
password = new byte[passLen];
|
password = new byte[passLen];
|
||||||
System.arraycopy(source.password, 0, password, 0, passLen);
|
System.arraycopy(source.password, 0, password, 0, passLen);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue