| Index: third_party/WebKit/Source/core/inspector/InspectorTracingAgent.cpp
|
| diff --git a/third_party/WebKit/Source/core/inspector/InspectorTracingAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorTracingAgent.cpp
|
| index 6d6a25cef00561a7bb4cec5c445b66f2edf666f4..5db02b66eaf7e2bdde8f5a70be738455ba20d20d 100644
|
| --- a/third_party/WebKit/Source/core/inspector/InspectorTracingAgent.cpp
|
| +++ b/third_party/WebKit/Source/core/inspector/InspectorTracingAgent.cpp
|
| @@ -67,7 +67,8 @@ void InspectorTracingAgent::end(ErrorString* errorString, PassOwnPtr<EndCallback
|
| String InspectorTracingAgent::sessionId()
|
| {
|
| String result;
|
| - m_state->getString(TracingAgentState::sessionId, &result);
|
| + if (m_state)
|
| + m_state->getString(TracingAgentState::sessionId, &result);
|
| return result;
|
| }
|
|
|
|
|