Changeset 261560 in webkit


Ignore:
Timestamp:
May 12, 2020 10:12:33 AM (4 years ago)
Author:
pvollan@apple.com
Message:

Unreviewed crash fix.

Use correct global name for icon service in RELEASE_ASSERT.

  • WebProcess/WebPage/WebPage.cpp:

(WebKit::WebPage::didChooseFilesForOpenPanelWithDisplayStringAndIcon):

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r261557 r261560  
     12020-05-12  Per Arne Vollan  <pvollan@apple.com>
     2
     3        Unreviewed crash fix.
     4
     5        Use correct global name for icon service in RELEASE_ASSERT.
     6
     7        * WebProcess/WebPage/WebPage.cpp:
     8        (WebKit::WebPage::didChooseFilesForOpenPanelWithDisplayStringAndIcon):
     9
    1102020-05-12  Youenn Fablet  <youenn@apple.com>
    211
  • trunk/Source/WebKit/WebProcess/WebPage/WebPage.cpp

    r261506 r261560  
    42374237
    42384238    RELEASE_ASSERT(!sandbox_check(getpid(), "mach-lookup", static_cast<enum sandbox_filter_type>(SANDBOX_FILTER_GLOBAL_NAME | SANDBOX_CHECK_NO_REPORT), "com.apple.frontboard.systemappservices"));
    4239     RELEASE_ASSERT(!sandbox_check(getpid(), "mach-lookup", static_cast<enum sandbox_filter_type>(SANDBOX_FILTER_GLOBAL_NAME | SANDBOX_CHECK_NO_REPORT), "com.apple.frontboard.iconservices"));
     4239    RELEASE_ASSERT(!sandbox_check(getpid(), "mach-lookup", static_cast<enum sandbox_filter_type>(SANDBOX_FILTER_GLOBAL_NAME | SANDBOX_CHECK_NO_REPORT), "com.apple.iconservices"));
    42404240
    42414241    RefPtr<Icon> icon;
Note: See TracChangeset for help on using the changeset viewer.