Changeset 186814 in webkit
- Timestamp:
- Jul 14, 2015, 2:06:56 PM (10 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r186812 r186814 1 2015-07-14 Anders Carlsson <andersca@apple.com> 2 3 Release assert under StyleResolver::loadPendingImages() caused by MemoryPressureHandler 4 https://bugs.webkit.org/show_bug.cgi?id=146940 5 rdar://problem/21605505 6 7 Reviewed by Sam Weinig. 8 9 * WebProcess/WebProcess.cpp: 10 (WebKit::WebProcess::processWillSuspendImminently): 11 1 12 2015-07-14 Sam Weinig <sam@webkit.org> 2 13 -
trunk/Source/WebKit2/WebProcess/WebProcess.cpp
r186396 r186814 1243 1243 void WebProcess::processWillSuspendImminently(bool& handled) 1244 1244 { 1245 if (parentProcessConnection()->inSendSync()) { 1246 // Avoid reentrency bugs such as rdar://problem/21605505 by just bailing 1247 // if we get an incoming ProcessWillSuspendImminently message when waiting for a 1248 // reply to a sync message. 1249 // FIXME: ProcessWillSuspendImminently should not be a sync message. 1250 return; 1251 } 1252 1245 1253 supplement<WebDatabaseManager>()->closeAllDatabases(); 1246 1254 actualPrepareToSuspend(ShouldAcknowledgeWhenReadyToSuspend::No);
Note:
See TracChangeset
for help on using the changeset viewer.