diff --git a/mozilla/browser/components/search/nsSearchSuggestions.js b/mozilla/browser/components/search/nsSearchSuggestions.js index 1b967fd350e..6641162aef9 100644 --- a/mozilla/browser/components/search/nsSearchSuggestions.js +++ b/mozilla/browser/components/search/nsSearchSuggestions.js @@ -370,6 +370,9 @@ SuggestAutoComplete.prototype = { } else if (!this._sentSuggestRequest) { // We didn't send a request, so just send back the form history results. this._listener.onSearchResult(this, this._formHistoryResult); + // don't hold onto this until component shutdown! + this._formHistoryResult = null; + } },