Changeset 144338 in webkit


Ignore:
Timestamp:
Feb 28, 2013 11:40:02 AM (11 years ago)
Author:
Nate Chapin
Message:

Source/WebCore: Crash in CachedRawResource::responseReceived().
https://bugs.webkit.org/show_bug.cgi?id=110482

Reviewed by Adam Barth.

Test: http/tests/security/XFrameOptions/x-frame-options-deny-multiple-clients.html

  • loader/cache/CachedRawResource.cpp:

(WebCore::CachedRawResource::responseReceived):

LayoutTests: Test for https://bugs.webkit.org/show_bug.cgi?id=110482

Reviewed by Adam Barth.

  • http/tests/security/XFrameOptions/x-frame-options-deny-multiple-clients-expected.txt: Added.
  • http/tests/security/XFrameOptions/x-frame-options-deny-multiple-clients.html: Added.
  • platform/chromium/http/tests/security/XFrameOptions/x-frame-options-deny-multiple-clients-expected.txt: Added.
Location:
trunk
Files:
3 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r144335 r144338  
     12013-02-28  Nate Chapin  <japhet@chromium.org>
     2
     3        Test for https://bugs.webkit.org/show_bug.cgi?id=110482
     4
     5        Reviewed by Adam Barth.
     6
     7        * http/tests/security/XFrameOptions/x-frame-options-deny-multiple-clients-expected.txt: Added.
     8        * http/tests/security/XFrameOptions/x-frame-options-deny-multiple-clients.html: Added.
     9        * platform/chromium/http/tests/security/XFrameOptions/x-frame-options-deny-multiple-clients-expected.txt: Added.
     10
    1112013-02-28  Chris Fleizach  <cfleizach@apple.com>
    212
  • trunk/Source/WebCore/ChangeLog

    r144336 r144338  
     12013-02-28  Nate Chapin  <japhet@chromium.org>
     2
     3        Crash in CachedRawResource::responseReceived().
     4        https://bugs.webkit.org/show_bug.cgi?id=110482
     5
     6        Reviewed by Adam Barth.
     7
     8        Test: http/tests/security/XFrameOptions/x-frame-options-deny-multiple-clients.html
     9
     10        * loader/cache/CachedRawResource.cpp:
     11        (WebCore::CachedRawResource::responseReceived):
     12
    1132013-02-28  Eric Carlson  <eric.carlson@apple.com>
    214
  • trunk/Source/WebCore/loader/cache/CachedRawResource.cpp

    r141136 r144338  
    129129void CachedRawResource::responseReceived(const ResourceResponse& response)
    130130{
     131    CachedResourceHandle<CachedRawResource> protect(this);
    131132    if (!m_identifier)
    132133        m_identifier = m_loader->identifier();
Note: See TracChangeset for help on using the changeset viewer.