mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-09 05:14:24 +00:00
bug 99910, password manager never isn't remembered, r=jag, sr=alecf
This commit is contained in:
parent
c07e99883d
commit
ca0da04ce0
@ -1667,12 +1667,8 @@ SI_LoadSignonData() {
|
||||
/* read the reject list */
|
||||
si_lock_signon_list();
|
||||
while (NS_SUCCEEDED(si_ReadLine(strm, buffer))) {
|
||||
if (buffer.Length() == 0) {
|
||||
/* something's wrong */
|
||||
si_unlock_signon_list();
|
||||
return -1;
|
||||
}
|
||||
if (buffer.CharAt(0) == '.') {
|
||||
/* a blank line is perfectly valid here -- corresponds to a local file */
|
||||
if (!buffer.IsEmpty() && buffer.CharAt(0) == '.') {
|
||||
break; /* end of reject list */
|
||||
}
|
||||
si_StripLF(buffer);
|
||||
|
Loading…
Reference in New Issue
Block a user