⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 245343 in webkit


Ignore:
Timestamp:
May 15, 2019, 2:14:33 PM (7 years ago)
Author:
Chris Dumez
Message:

Unreviewed, fix assertion introduced in r245339.

  • UIProcess/WebProcessCache.cpp:

(WebKit::WebProcessCache::CachedProcess::CachedProcess):

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r245339 r245343  
     12019-05-15  Chris Dumez  <cdumez@apple.com>
     2
     3        Unreviewed, fix assertion introduced in r245339.
     4
     5        * UIProcess/WebProcessCache.cpp:
     6        (WebKit::WebProcessCache::CachedProcess::CachedProcess):
     7
    182019-05-15  Sihui Liu  <sihui_liu@apple.com>
    29
  • trunk/Source/WebKit/UIProcess/WebProcessCache.cpp

    r245339 r245343  
    248248{
    249249    RELEASE_ASSERT(!m_process->pageCount());
    250     RELEASE_ASSERT_WITH_MESSAGE(!m_process->websiteDataStore().hasProcess(process.ptr()), "Only processes with pages should be registered with the data store");
     250    RELEASE_ASSERT_WITH_MESSAGE(!m_process->websiteDataStore().hasProcess(m_process.get()), "Only processes with pages should be registered with the data store");
    251251    m_process->setIsInProcessCache(true);
    252252    m_evictionTimer.startOneShot(cachedProcessLifetime);
Note: See TracChangeset for help on using the changeset viewer.