$OpenBSD$ index a69725f..9df2e34 100644 --- toolkit/components/contentprefs/nsContentPrefService.js.orig Fri Feb 20 15:40:39 2015 +++ toolkit/components/contentprefs/nsContentPrefService.js Fri Feb 20 15:40:39 2015 @@ -1076,7 +1076,7 @@ ContentPrefService.prototype = { var dbConnection; - if (!dbFile.exists()) + if (true || !dbFile.exists()) dbConnection = this._dbCreate(dbService, dbFile); else { try { @@ -1124,7 +1124,7 @@ ContentPrefService.prototype = { }, _dbCreate: function ContentPrefService__dbCreate(aDBService, aDBFile) { - var dbConnection = aDBService.openDatabase(aDBFile); + var dbConnection = aDBService.openSpecialDatabase("memory"); try { this._dbCreateSchema(dbConnection);