mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Backed out changeset: c8eb8a8f42d9
for Bug 452899 - Don't explicitly create the statement wrapper - storage does it for us; (retry, after bug 457743 was fixed); r=(dolske + sdwilsh) which is causing Leaks (again).
This commit is contained in:
parent
04ab22fdd5
commit
08935d60ff
@ -954,7 +954,12 @@ LoginManagerStorage_mozStorage.prototype = {
|
||||
// Memoize the statements
|
||||
if (!this._dbStmts[query]) {
|
||||
this.log("Creating new statement for query: " + query);
|
||||
this._dbStmts[query] = this._dbConnection.createStatement(query);
|
||||
let stmt = this._dbConnection.createStatement(query);
|
||||
|
||||
let wrappedStmt = Cc["@mozilla.org/storage/statement-wrapper;1"].
|
||||
createInstance(Ci.mozIStorageStatementWrapper);
|
||||
wrappedStmt.initialize(stmt);
|
||||
this._dbStmts[query] = wrappedStmt;
|
||||
}
|
||||
// Replace parameters, must be done 1 at a time
|
||||
if (params)
|
||||
@ -1077,7 +1082,7 @@ LoginManagerStorage_mozStorage.prototype = {
|
||||
|
||||
// Finalize all statements to free memory, avoid errors later
|
||||
for (let i = 0; i < this._dbStmts.length; i++)
|
||||
this._dbStmts[i].finalize();
|
||||
this._dbStmts[i].statement.finalize();
|
||||
this._dbStmts = [];
|
||||
|
||||
// Close the connection, ignore 'already closed' error
|
||||
|
Loading…
Reference in New Issue
Block a user