Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
The Tor Project
Applications
Tor Browser
Commits
8fe736a9
Commit
8fe736a9
authored
Jul 08, 2010
by
timeless@mozdev.org
Browse files
Bug 577363 assignment to undeclared variable stmt in _dbMigrateToVersion4
r=zpao
parent
64d51e31
Changes
1
Hide whitespace changes
Inline
Side-by-side
toolkit/components/passwordmgr/src/storage-mozStorage.js
View file @
8fe736a9
...
...
@@ -1376,6 +1376,7 @@ LoginManagerStorage_mozStorage.prototype = {
// Get a list of existing logins
let
logins
=
[];
let
stmt
;
query
=
"
SELECT id, encryptedUsername, encryptedPassword
"
+
"
FROM moz_logins WHERE encType isnull
"
;
try
{
...
...
@@ -1431,6 +1432,7 @@ LoginManagerStorage_mozStorage.prototype = {
// Get a list of IDs for existing logins.
let
ids
=
[];
let
stmt
;
query
=
"
SELECT id FROM moz_logins WHERE timeCreated isnull OR
"
+
"
timeLastUsed isnull OR timePasswordChanged isnull OR timesUsed isnull
"
;
try
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment