Source/WebCore/ChangeLog
1
2012-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
1
11
2012-04-10 Ilya Tikhonovsky <loislo@chromium.org>
2
12
3
13
Web Inspector: use maxJSObjectId that is provided by back-end.
113708
Source/WebCore/loader/ResourceLoader.cpp
@
@
void ResourceLoader::cancel(const Resour
381
381
382
382
if (m_handle)
383
383
m_handle->clearAuthentication();
384
385
m_documentLoader->cancelPendingSubstituteLoad(this);
384
if (m_documentLoader)
385
m_documentLoader->cancelPendingSubstituteLoad(this);
386
386
if (m_handle) {
387
387
m_handle->cancel();
388
388
m_handle = 0;
113708