| Index: third_party/WebKit/Source/core/html/HTMLInputElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLInputElement.cpp b/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
|
| index 8beafdc24f696395c503d4b3e4660597544362a2..da256faa4b3c94c5792e6924d13b6c43b1fa3685 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
|
| @@ -1182,7 +1182,7 @@ void HTMLInputElement::postDispatchEventHandler(Event* event, void* dataFromPreD
|
| if (!state)
|
| return;
|
| // m_inputTypeView could be freed if the type attribute is modified through a change event handler.
|
| - RefPtrWillBeRawPtr<InputTypeView> protect(m_inputTypeView);
|
| + RefPtrWillBeRawPtr<InputTypeView> protect(m_inputTypeView.get());
|
| m_inputTypeView->didDispatchClick(event, *state);
|
| }
|
|
|
|
|