Changeset 268243 in webkit


Ignore:
Timestamp:
Oct 8, 2020 7:31:40 PM (4 years ago)
Author:
achristensen@apple.com
Message:

REGRESSION (r267763): SHOULD NEVER BE REACHED in WebKit::contentRuleListsFromIdentifier
https://bugs.webkit.org/show_bug.cgi?id=217499

There was an invalid assertion. NBD.

  • UIProcess/WebProcessProxy.cpp:

(WebKit::contentRuleListsFromIdentifier):

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r268239 r268243  
     12020-10-08  Alex Christensen  <achristensen@webkit.org>
     2
     3        REGRESSION (r267763): SHOULD NEVER BE REACHED in WebKit::contentRuleListsFromIdentifier
     4        https://bugs.webkit.org/show_bug.cgi?id=217499
     5
     6        There was an invalid assertion. NBD.
     7
     8        * UIProcess/WebProcessProxy.cpp:
     9        (WebKit::contentRuleListsFromIdentifier):
     10
    1112020-10-08  Ryosuke Niwa  <rniwa@webkit.org>
    212
  • trunk/Source/WebKit/UIProcess/WebProcessProxy.cpp

    r268086 r268243  
    18051805
    18061806    auto* userContentController = WebUserContentControllerProxy::get(*userContentControllerIdentifier);
    1807     if (!userContentController) {
    1808         ASSERT_NOT_REACHED();
     1807    if (!userContentController)
    18091808        return { };
    1810     }
    18111809
    18121810    return userContentController->contentRuleListData();
Note: See TracChangeset for help on using the changeset viewer.