mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-12-04 15:49:33 +01:00
Fix password assignment.
This commit is contained in:
@@ -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);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user