Bug 579077 - WARNING: NS_ENSURE_TRUE(mBoundFrame) failed: file ../../../../../content/html/content/src/nsTextEditorState.cpp, line 1326; r=jst approval2.0=benjamin

This commit is contained in:
Ehsan Akhgari 2010-07-21 20:59:25 -04:00
Родитель 48b4d58926
Коммит 98fc3a4b9e
2 изменённых файлов: 4 добавлений и 2 удалений

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

@ -780,7 +780,7 @@ NS_IMETHODIMP_(void)
nsHTMLInputElement::UnbindFromFrame(nsTextControlFrame* aFrame)
{
nsTextEditorState *state = GetEditorState();
if (state) {
if (state && aFrame) {
state->UnbindFromFrame(aFrame);
}
}

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

@ -449,7 +449,9 @@ nsHTMLTextAreaElement::BindToFrame(nsTextControlFrame* aFrame)
NS_IMETHODIMP_(void)
nsHTMLTextAreaElement::UnbindFromFrame(nsTextControlFrame* aFrame)
{
mState->UnbindFromFrame(aFrame);
if (aFrame) {
mState->UnbindFromFrame(aFrame);
}
}
NS_IMETHODIMP