Bug 374069 - Crash [@ nsContentUtils::ComparePoints] with testcase, when right-clicking, r=mscott, a=dbaron

This commit is contained in:
martijn.martijn@gmail.com 2007-08-16 13:50:38 -07:00
Родитель 7bf61c3b4e
Коммит 028685e4a1
2 изменённых файлов: 2 добавлений и 1 удалений

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

@ -786,6 +786,7 @@ NS_IMETHODIMP
mozInlineSpellChecker::GetMispelledWord(nsIDOMNode *aNode, PRInt32 aOffset,
nsIDOMRange **newword)
{
NS_ENSURE_ARG_POINTER(aNode);
nsCOMPtr<nsISelection> spellCheckSelection;
nsresult res = GetSpellCheckSelection(getter_AddRefs(spellCheckSelection));
NS_ENSURE_SUCCESS(res, res);

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

@ -81,7 +81,7 @@ var InlineSpellCheckerUI = {
{
this.mOverMisspelling = false;
if (! this.mInlineSpellChecker)
if (!rangeParent || !this.mInlineSpellChecker)
return;
var selcon = this.mEditor.selectionController;