Changeset 203098 in webkit


Ignore:
Timestamp:
Jul 11, 2016, 4:44:48 PM (9 years ago)
Author:
Simon Fraser
Message:

<rdar://problem/27285599> REGRESSION: Assertion under CertificateInfo::trust() every time I focus a text field

Reviewed by Sam Weinig.

The assertion added to CertificateInfo::trust() in r203040 is wrong, and is triggered when
focusing a form field via calls to -[WKWebProcessPlugInFrame _serverTrust], so remove it.

  • platform/network/cf/CertificateInfo.h:

(WebCore::CertificateInfo::trust):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r203097 r203098  
     12016-07-11  Simon Fraser  <simon.fraser@apple.com>
     2
     3        <rdar://problem/27285599> REGRESSION: Assertion under CertificateInfo::trust() every time I focus a text field
     4
     5        Reviewed by Sam Weinig.
     6
     7        The assertion added to CertificateInfo::trust() in r203040 is wrong, and is triggered when
     8        focusing a form field via calls to -[WKWebProcessPlugInFrame _serverTrust], so remove it.
     9
     10        * platform/network/cf/CertificateInfo.h:
     11        (WebCore::CertificateInfo::trust):
     12
    1132016-07-11  Simon Fraser  <simon.fraser@apple.com>
    214
  • trunk/Source/WebCore/platform/network/cf/CertificateInfo.h

    r203040 r203098  
    5454    }
    5555 
    56     SecTrustRef trust() const { ASSERT(m_trust); return m_trust.get(); }
     56    SecTrustRef trust() const { return m_trust.get(); }
    5757#endif
    5858
Note: See TracChangeset for help on using the changeset viewer.