Fix password assignment.

This commit is contained in:
Brian Pellin 2009-07-08 13:31:44 -05:00
parent c50fe534a3
commit d80e8ed122

View file

@ -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);