Source/WebCore/ChangeLog

 12012-04-10 Jonathan Liu <net147@gmail.com>
 2
 3 Fix possible null pointer dereference.
 4 https://bugs.webkit.org/show_bug.cgi?id=83565
 5
 6 Reviewed by NOBODY (OOPS!).
 7
 8 * loader/ResourceLoader.cpp:
 9 (WebCore::ResourceLoader::cancel):
 10
1112012-04-10 Ilya Tikhonovsky <loislo@chromium.org>
212
313 Web Inspector: use maxJSObjectId that is provided by back-end.
113708

Source/WebCore/loader/ResourceLoader.cpp

@@void ResourceLoader::cancel(const Resour
381381
382382 if (m_handle)
383383 m_handle->clearAuthentication();
384 
385  m_documentLoader->cancelPendingSubstituteLoad(this);
 384 if (m_documentLoader)
 385 m_documentLoader->cancelPendingSubstituteLoad(this);
386386 if (m_handle) {
387387 m_handle->cancel();
388388 m_handle = 0;
113708