Bug 555015 - JavaScript strict warning: bookmarks.js: undeclared variable record [r=Mardak]

Just make sure the record variable is declared before using it.
This commit is contained in:
Paul O’Shannessy 2010-03-25 13:58:27 -07:00
Родитель e0f3625f3c
Коммит 8a1c83fe01
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -706,6 +706,7 @@ BookmarksStore.prototype = {
// Create a record starting from the weave id (places guid)
createRecord: function createRecord(guid) {
let placeId = idForGUID(guid);
let record;
if (placeId <= 0) { // deleted item
record = new PlacesItem();
record.deleted = true;